Commit a204c676 authored by Seblu's avatar Seblu
Browse files

fix build failure


git-svn-id: https://seblu.net/s/archpkg@192 02741741-5192-46b8-8916-7152b19231d9
parent 53252b56
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -3,19 +3,20 @@

pkgname=opensc
pkgver=0.12.2
pkgrel=1
pkgrel=2
pkgdesc="Access smart cards that support cryptographic operations"
arch=('x86_64' 'i686')
url="http://www.opensc-project.org/opensc"
license=("LGPL")
backup=('etc/opensc.conf')
depends=('openssl' 'pcsclite')
depends=('openssl' 'pcsclite' 'libltdl')
options=('!libtool')
source=("http://www.opensc-project.org/files/$pkgname/$pkgname-$pkgver.tar.gz")
md5sums=('5116adea5f2f9f22fb9896965789144b')
 
build() {
  cd $pkgname-$pkgver
  export LIBS=-lltdl
  ./configure --prefix=/usr --sysconfdir=/etc --enable-pcsc --disable-static
  make
}