diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-04-22 00:06:19 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-04-22 00:06:19 -0300 |
commit | 45a1b262edf175ecf5dd43e51c8ee72f9d78265b (patch) | |
tree | c96780037991d6d44cefc8a149e9b88c6bfc6d67 /community/ccid | |
parent | c034be9e8f973eb6c1dbb77fb4528fad379ddbfd (diff) | |
parent | 69e1fada8bdc9588d0a3d8bc3403fa809d809a84 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/quvi/PKGBUILD
community/tasks/PKGBUILD
community/xwax/PKGBUILD
core/udev/PKGBUILD
extra/libplist/PKGBUILD
extra/mirage/PKGBUILD
extra/rdesktop/PKGBUILD
staging/gpsd/PKGBUILD
testing/pygobject/PKGBUILD
Diffstat (limited to 'community/ccid')
-rw-r--r-- | community/ccid/PKGBUILD | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/community/ccid/PKGBUILD b/community/ccid/PKGBUILD index 6ce37dc6c..d2abd4885 100644 --- a/community/ccid/PKGBUILD +++ b/community/ccid/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 40459 2011-02-24 02:16:11Z giovanni $ +# $Id: PKGBUILD 45275 2011-04-18 22:55:20Z giovanni $ # Maintainer: Giovanni Scafora <giovanni@archlinux.org> # Contributor: Daniel Plaza <daniel.plaza.espi@gmail.com> pkgname=ccid -pkgver=1.4.2 +pkgver=1.4.3 pkgrel=1 pkgdesc="A generic USB Chip/Smart Card Interface Devices driver" arch=('i686' 'x86_64' 'mips64el') @@ -12,18 +12,22 @@ license=('LGPL' 'GPL') depends=('pcsclite') makedepends=('pkgconfig') backup=(etc/reader.conf.d/libccidtwin) -source=(https://alioth.debian.org/frs/download.php/3518/${pkgname}-${pkgver}.tar.bz2) -md5sums=('4a8f954c0aef48e8e5ab5d458cf819e8') +source=("https://alioth.debian.org/frs/download.php/3535/${pkgname}-${pkgver}.tar.bz2") +md5sums=('a269baa572be6f93ec57da279c7ec276') build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure --prefix=/usr \ --sysconfdir=/etc \ - --enable-twinserial || return 1 + --enable-twinserial - make || return 1 - make DESTDIR="${pkgdir}" install || return 1 + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install install -D -m644 src/92_pcscd_ccid.rules "${pkgdir}/lib/udev/rules.d/85-pcscd-ccid.rules" || return 1 } |