mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-19 00:21:40 +00:00
added downgraded extra/libdvdread
This commit is contained in:
parent
224f58fb17
commit
fe01bbcf30
1 changed files with 37 additions and 0 deletions
37
extra/libdvdread/PKGBUILD
Normal file
37
extra/libdvdread/PKGBUILD
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
# $Id$
|
||||||
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
||||||
|
# Contributor: Thomas Baechler <thomas@archlinux.org>
|
||||||
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
||||||
|
|
||||||
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||||
|
# - downgrade to 5.0.1 to match x86 repos, fix build errors
|
||||||
|
# - remove when actually bumped upstream and put into their repos
|
||||||
|
|
||||||
|
pkgname=libdvdread
|
||||||
|
pkgver=5.0.1
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Provides a simple foundation for reading DVD video disks"
|
||||||
|
arch=(i686 x86_64)
|
||||||
|
url="http://dvdnav.mplayerhq.hu"
|
||||||
|
license=('GPL')
|
||||||
|
depends=('glibc')
|
||||||
|
makedepends=('libdvdcss' 'git')
|
||||||
|
optdepends=('libdvdcss: for decoding encrypted DVDs')
|
||||||
|
source=(git://git.videolan.org/libdvdread.git#tag=$pkgver)
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
prepare() {
|
||||||
|
cd $pkgname
|
||||||
|
autoreconf -fi
|
||||||
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd $pkgname
|
||||||
|
./configure --prefix=/usr
|
||||||
|
make
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd $pkgname
|
||||||
|
make DESTDIR="${pkgdir}" install
|
||||||
|
}
|
Loading…
Reference in a new issue