diff options
Diffstat (limited to 'abs/extra')
-rw-r--r-- | abs/extra/libdvdcss/PKGBUILD | 29 |
1 files changed, 16 insertions, 13 deletions
diff --git a/abs/extra/libdvdcss/PKGBUILD b/abs/extra/libdvdcss/PKGBUILD index 80772fa..c6b1807 100644 --- a/abs/extra/libdvdcss/PKGBUILD +++ b/abs/extra/libdvdcss/PKGBUILD @@ -1,24 +1,27 @@ -# $Id: PKGBUILD 37036 2009-04-30 04:50:40Z eric $ -# Maintainer: arjan <arjan@archlinux.org> +# $Id: PKGBUILD 160018 2012-05-28 02:15:20Z eric $ +# Maintainer: Stéphane Gaudreault <stephane@archlinux.org> +# Contributor: arjan <arjan@archlinux.org> # Contributor Sarah Hay <sarahhay@mb.sympatico.ca> pkgname=libdvdcss -pkgver=1.2.10 -pkgrel=1.1 -pkgdesc="libdvdcss is a cross-platform library for transparent DVD device access with on-the-fly CSS decryption." +pkgver=1.2.12 +pkgrel=1 +pkgdesc="A portable abstraction library for DVD decryption" +url="http://www.videolan.org/libdvdcss" arch=('i686' 'x86_64') license=('GPL') depends=('glibc') options=('!libtool') -source=(http://download.videolan.org/pub/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2) -md5sums=('ebd5370b79ac5a83e5c61b24a214cf74') -url="http://www.videolan.org/libdvdcss/" - +source=(http://download.videolan.org/pub/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2) +md5sums=('2218a193900e3203aa10dc24cdf54275') build() { - cd $srcdir/$pkgname-$pkgver - ./configure --prefix=/usr || return 1 - make || return 1 - make DESTDIR=$pkgdir install || return 1 + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr + make } +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="$pkgdir" install +} |