New Package: opensc - tools and libraries for smart card

hope it is right, apprently it didn't need a devel package

Regards

carlo
This commit is contained in:
onekk 2014-05-22 15:24:18 +02:00
parent ec91936277
commit 911efe36b3
4 changed files with 44 additions and 0 deletions

View file

@ -1623,3 +1623,5 @@ libgtest.so.0 gmock-1.7.0_1
libgtest_main.so.0 gmock-1.7.0_1
libgmock.so.0 gmock-1.7.0_1
libgmock_main.so.0 gmock-1.7.0_1
libopensc.so.3 libopensc-0.13.0_1

1
srcpkgs/libopensc Symbolic link
View file

@ -0,0 +1 @@
opensc

1
srcpkgs/opensc-pkcs11 Symbolic link
View file

@ -0,0 +1 @@
opensc

40
srcpkgs/opensc/template Normal file
View file

@ -0,0 +1,40 @@
# Template file for 'opensc'
pkgname=opensc
version=0.13.0
revision=1
build_style=gnu-configure
maintainer="Carlo Dormeletti <carlo.dormeletti@email.it>"
homepage="https://github.com/OpenSC/OpenSC/wiki"
license="LGPL-2.1"
short_desc="OpenSC tools and libraries for smart cards"
hostmakedepends="pkg-config"
makedepends="readline-devel pcsclite-devel openssl-devel libltdl-devel
zlib-devel docbook-xsl libxslt-devel"
depends="libpcsclite "
configure_args="--enable-man --enable-doc --with-xsl-stylesheetsdir=${XBPS_CROSS_BASE}/usr/share/xsl/docbook"
distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version}.tar.gz"
checksum="abde46ae53b12b3273e40c532ffd4f7d423a51e0919a5234761453c17c089b14"
conf_files="/etc/opensc.conf"
opensc-pkcs11_package() {
short_desc+=" - pkcs11 library"
depends="libopensc>=${version}"
pkg_install() {
vmove "usr/lib/pkcs11/*"
vmove "usr/lib/opensc-pkcs11*"
vmove "usr/lib/pkcs11-spy.so"
}
}
libopensc_package() {
short_desc+=" - library files"
pkg_install() {
vmove "usr/lib/libopensc.so*"
}
}
post_install(){
rm ${DESTDIR}/usr/lib/libopensc.a
}
# vim: set ts=4 sw=4 sts=4 et: