blob: ffe63ebce3d8b6f4629e973f3efbdc3e13613359 (
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=2.1.2
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=('122bd412df73e8d5a20635cbecaa6bcb7810490b0ad41222bcd591285d1a2074')
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
}
|