blob: 2195152d9427a4e6a05df1a3fc8d140a61b9504b (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# Maintainer: Alad
# Contributor: Timothy Redaelli <timothy.redaelli@gmail.com>
# Contributor: Sébastien Luttringer
# Contributor: kevku <kevku@msn.com>
pkgname=opensc
pkgver=0.23.0
pkgrel=1
pkgdesc='Tools and libraries for smart cards'
arch=('powerpc64le')
url='https://github.com/OpenSC/OpenSC/wiki'
license=('LGPL')
backup=('etc/opensc.conf')
makedepends=('docbook-xsl')
depends=('pcsclite' 'glib2' 'libltdl')
options=(!emptydirs !lto)
source=("https://github.com/OpenSC/OpenSC/releases/download/$pkgver/opensc-$pkgver.tar.gz")
sha512sums=('cd102cd64e719c59153960a4921b7525055045f16e6f6ffa8c9def6ce999a9c5098267b41f8753b41107f626bea20c34561002f5d38eddb4ce6b371913a17a1b')
build() {
cd $pkgname-$pkgver
_sheetdir=(/usr/share/xml/docbook/xsl-stylesheets-*-nons)
./bootstrap
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--with-completiondir=/usr/share/bash-completion/completions \
--enable-man \
--enable-doc \
--enable-readline \
--enable-openssl \
--enable-pcsc \
--enable-zlib \
--enable-sm \
--with-xsl-stylesheetsdir="$_sheetdir"
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
}
package(){
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
install -D -m644 etc/opensc.conf "$pkgdir/etc/opensc.conf"
}
# vim:set ts=2 sw=2 et:
|