mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
33 lines
906 B
Bash
33 lines
906 B
Bash
# $Id: PKGBUILD 157790 2012-04-29 15:02:33Z ibiru $
|
|
# Maintainer: Ionut Biru <ibiru@archlinux.org>
|
|
# Contributor: Andrew Cook <ariscop@gmail.com>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - remove java dependency and build options
|
|
|
|
pkgname=libbluray
|
|
pkgver=0.2.2
|
|
pkgrel=1
|
|
pkgdesc="Library to access Blu-Ray disks for video playback"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.videolan.org/developers/libbluray.html"
|
|
license=('LGPL2.1')
|
|
depends=('libxml2')
|
|
options=(!libtool)
|
|
source=(ftp://ftp.videolan.org/pub/videolan/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2)
|
|
sha512sums=('a27eaa929ef05c544beb966a24dfc5425546d6035bfb3e86dc60987b8a4761031ce27c3836a64f71cc76b5308c3cd75efb3bc1f238185819385477e64883888a')
|
|
|
|
build() {
|
|
cd "$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr \
|
|
--disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|