aboutsummaryrefslogtreecommitdiffstats
path: root/build-aux/PKGBUILD
blob: d50f2e3f83c545ec714eaa8e11f71d1ec669e604 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# SPDX-FileCopyrightText: 2023 Fredrik Salomonsson <plattfot@posteo.net>
#
# SPDX-License-Identifier: GPL-3.0-or-later

# Maintainer: Fredrik Salomonsson <plattfot@posteo.net>
pkgname=guile-pinentry-rofi
pkgver=2.0.5
pkgrel=1
epoch=
pkgdesc="rofi frontend for pinentry"
arch=('any')
url=""
license=('Expat')
groups=()
depends=('rofi' 'guile' )
makedepends=('autoconf-archive')
checkdepends=()
optdepends=()
provides=()
conflicts=('pinentry-rofi-guile')
replaces=()
backup=()
options=()
install=
changelog=
source=("$pkgname-$pkgver::git+https://github.com/plattfot/pinentry-rofi.git#tag=$pkgver")
noextract=()
md5sums=('SKIP')
package() {
	cd "$srcdir/$pkgname-$pkgver"
        autoreconf -vif && ./configure --prefix=/usr && make && DESTDIR="$pkgdir" make install
}