diff options
Diffstat (limited to 'abs/extra')
-rw-r--r-- | abs/extra/libbluray/PKGBUILD | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/abs/extra/libbluray/PKGBUILD b/abs/extra/libbluray/PKGBUILD index 26c7c22..bdedee0 100644 --- a/abs/extra/libbluray/PKGBUILD +++ b/abs/extra/libbluray/PKGBUILD @@ -1,10 +1,10 @@ # $Id$ # Maintainer: Ionut Biru <ibiru@archlinux.org> -# Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl> +# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org> # Contributor: Andrew Cook <ariscop@gmail.com> pkgname=libbluray -pkgver=0.5.0 +pkgver=0.6.2 pkgrel=1 pkgdesc='Library to access Blu-Ray disks for video playback' arch=('i686' 'x86_64') @@ -12,19 +12,14 @@ url='http://www.videolan.org/developers/libbluray.html' license=('LGPL2.1') depends=('libxml2' 'freetype2') source=(ftp://ftp.videolan.org/pub/videolan/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2) -md5sums=('04cf15d0f3581a955d3a2ccb9dc06e9e') +md5sums=('f4d2f2cab53f976cbb22cbae069057bd') build() { cd $pkgname-$pkgver - - ./configure --prefix=/usr \ - --disable-static + ./configure --prefix=/usr make } package() { - cd $pkgname-$pkgver - make DESTDIR="$pkgdir" install + make DESTDIR="$pkgdir" -C $pkgname-$pkgver install } - -# vim:set ts=2 sw=2 et: |