Commit 54d6b657 authored by Seblu's avatar Seblu
Browse files

moved opensc to community


git-svn-id: https://seblu.net/s/archpkg@199 02741741-5192-46b8-8916-7152b19231d9
parent fb883c48
Loading
Loading
Loading
Loading

opensc/PKGBUILD

deleted100644 → 0
+0 −30
Original line number Diff line number Diff line
# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org>
# Contributor: kevku <kevku@msn.com>

pkgname=opensc
pkgver=0.12.2
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' '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
}
 
package(){
  cd $pkgname-$pkgver
  make DESTDIR="$pkgdir" install
  install -D -m644 etc/opensc.conf "$pkgdir/etc/opensc.conf"
} 

# vim:set ts=2 sw=2 ft=sh et: