desktop/libcacard/PKGBUILD
2018-12-03 01:12:49 +01:00

22 lines
578 B
Bash

pkgname=libcacard
pkgver=2.6.1
pkgrel=1
pkgdesc='(Common Access Card) library thar provides emulation of smart cards to a virtual card reader running in a guest virtual machine'
arch=(x86_64)
license=(GPL2)
url='http://www.spice-space.org/page/Libcacard'
depends=(nss glib2)
source=(http://www.spice-space.org/download/libcacard/libcacard-$pkgver.tar.xz)
sha256sums=('6276c6a2bd018bf14f1b97260fff093b4a2325a9177be4fc6be7c1a9e204def0')
build () {
cd libcacard-$pkgver
./configure --prefix=/usr
make
}
package() {
cd libcacard-$pkgver
make DESTDIR="$pkgdir" install
}