blob: c624d7f07560ae5e67639be7f638876482cf816b (
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
|
# Contributor (Arch): Jameson Pugh <imntreal@gmail.com>
# Maintainer : Parabola / GNU / Linux-libre Aurelien Desbrieres <aurelien@cwb.io>
pkgname=libcacard
pkgver=0.1.2
pkgrel=3
pkgdesc="Virtual Smart Card Emulator"
arch=('x86_64' 'i686')
url="http://spice-space.org"
license=('GPL')
options=('!libtool')
depends=('nss')
source=(http://spice-space.org/download/libcacard/$pkgname-$pkgver.tar.bz2)
md5sums=('ca61fd1d7feaa09e37011daac95c0168')
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}
# vim:set ts=2 sw=2 et:
md5sums=('ca61fd1d7feaa09e37011daac95c0168')
|