summaryrefslogtreecommitdiff
path: root/pcr/eid-mw/PKGBUILD
blob: 956d843b26b296fcaea49c77e3d7a22f5e901e24 (plain)
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
33
34
35
36
# Maintainer (Arch): Alad Wenter <https://wiki.archlinux.org/index.php/Special:EmailUser/Alad>
# Contributor (Arch): Xavier D. <magicrhesus@ouranos.be>
# Contributor (Arch): Valere Monseur <valere.monseur@ymail.com>
# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>

pkgname=eid-mw
pkgver=4.1.4
pkgrel=1

pkgdesc="The eID middleware for the Belgian eID"
url=http://eid.belgium.be/
arch=('i686' 'x86_64')
license=('LGPL3')

depends=('pcsclite' 'gtk2')
optdepends=('acsccid: ACS CCID smart card readers'
	    'ccid: A generic USB Chip/Smart Card Interface Devices driver'
	    'pcsc-tools: PC/SC smartcard tools')
source=("https://dist.eid.belgium.be/continuous/sources/$pkgname-$pkgver-v$pkgver.tar.gz")
sha256sums=('2996960ea92504c7cee1953ccf4520ba78979c7771645e2b2c1207f94be0a308')

# SSL cert expired on July 29th; temporalily use --insecure
DLAGENTS=('https::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -o %o %u --insecure')

build() {
	cd "$pkgname-$pkgver-v$pkgver"
	./configure --prefix=/usr --libexecdir=/usr/bin
	make
}

package() {
	cd "$pkgname-$pkgver-v$pkgver"
	make install DESTDIR="$pkgdir"
}
     
# vim:set ts=2 sw=2 et: