blob: 3207e6aa733d24e2251a75858932b64db0aac715 (
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
37
38
39
|
# Maintainer: Filip Parag <filip@parag.rs>
pkgname=bas-celik-bin
pkgver=1.9.0
pkgrel=1
pkgdesc='A program for reading smart-card documents issued by the government of Serbia'
arch=(x86_64)
conflicts=(bas-celik)
provides=()
url="https://github.com/ubavic/bas-celik/"
license=(MIT)
depends=(ccid opensc)
source=("bas_celik-${pkgver}_amd64.tar.gz::https://github.com/ubavic/bas-celik/releases/download/v${pkgver}/bas-celik.linux.amd64.tar.xz")
sha256sums=('592f3b1ede8baad299bbb5b43d7e029f1d2ee15a0f7a1d2292bc1fa9210420b0')
package()
{
export DESTDIR="${pkgdir}"
export PREFIX="/usr"
cd "${srcdir}"
make install
}
test_pcscd()
{
if ! systemctl is-active --quiet pcscd.service; then
echo 'This program requires pcscd service to be running'
fi
}
post_install()
{
test_pcscd
}
post_upgrade()
{
test_pcscd
}
|