34 lines
911 B
Plaintext
34 lines
911 B
Plaintext
# Tanım: smart kartlar için araç seti ve kütüphane
|
||
# URL: https://github.com/OpenSC/OpenSC/wiki
|
||
# Paketçi: milisarge
|
||
# Gerekler: pcsc-lite libxslt docbook-xsl
|
||
|
||
isim=opensc
|
||
surum=0.18.0
|
||
devir=1
|
||
kaynak=(https://github.com/OpenSC/OpenSC/releases/download/$surum/opensc-$surum.tar.gz::$isim-$surum.tar.gz
|
||
bash-completion-path.patch)
|
||
|
||
derle() {
|
||
cd $isim-$surum
|
||
patch -Np0 -i "$SRC"/bash-completion-path.patch
|
||
export LIBS=-lltdl
|
||
_sheetdir=(/usr/share/xml/docbook/xsl-stylesheets-*)
|
||
./bootstrap
|
||
./configure \
|
||
--prefix=/usr \
|
||
--sysconfdir=/etc \
|
||
--enable-man \
|
||
--disable-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
|
||
make DESTDIR="$PKG" install
|
||
install -D -m644 etc/opensc.conf "$PKG/etc/opensc.conf"
|
||
}
|