mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 01:44:38 +08:00
23 lines
577 B
Bash
23 lines
577 B
Bash
pkgname=libbluray
|
|
pkgver=0.9.2
|
|
pkgrel=1
|
|
pkgdesc="Library to access Blu-Ray disks for video playback"
|
|
arch=('x86_64')
|
|
url="http://www.videolan.org/developers/libbluray.html"
|
|
license=('LGPL2.1')
|
|
depends=('libxml2' 'freetype2' 'fontconfig')
|
|
makedepends=('apache-ant')
|
|
source=(ftp://ftp.videolan.org/pub/videolan/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('836b2de16547776bf2726166cf796f13')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix=/usr --disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|