diff options
Diffstat (limited to 'extra/libdvdcss')
-rw-r--r-- | extra/libdvdcss/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/extra/libdvdcss/PKGBUILD b/extra/libdvdcss/PKGBUILD new file mode 100644 index 000000000..6317b615b --- /dev/null +++ b/extra/libdvdcss/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 102948 2010-12-13 12:51:30Z stephane $ +# 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=2 +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) +sha1sums=('7c933d011e34c218048d48f0c1a8b4ff56798dcd') + + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="$pkgdir" install +} |