summaryrefslogtreecommitdiffstats
path: root/abs
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2012-08-07 19:51:40 (GMT)
committerJames Meyer <james.meyer@operamail.com>2012-08-07 19:51:40 (GMT)
commit29e97fe77de9a891dc5a8082eb5c5843402437d8 (patch)
treee8b7ead3c3e7dc513d0cce536a8c8b65d9f3763b /abs
parent7bf2e79c73dc06505a896c7cf164d8f620c16ba6 (diff)
downloadlinhes_pkgbuild-29e97fe77de9a891dc5a8082eb5c5843402437d8.zip
linhes_pkgbuild-29e97fe77de9a891dc5a8082eb5c5843402437d8.tar.gz
linhes_pkgbuild-29e97fe77de9a891dc5a8082eb5c5843402437d8.tar.bz2
libblurray-git removed
Diffstat (limited to 'abs')
-rw-r--r--abs/extra/libbluray-git/PKGBUILD38
1 files changed, 0 insertions, 38 deletions
diff --git a/abs/extra/libbluray-git/PKGBUILD b/abs/extra/libbluray-git/PKGBUILD
deleted file mode 100644
index c83dce3..0000000
--- a/abs/extra/libbluray-git/PKGBUILD
+++ /dev/null
@@ -1,38 +0,0 @@
-# Maintainer: Andrew Cook <ariscop@gmail.com>
-
-pkgname=libbluray-git
-pkgver=20101110
-pkgrel=1
-pkgdesc="Blu-Ray access library"
-arch=('i686' 'x86_64')
-depends=('doxygen')
-license=('LGPL')
-url="http://www.videolan.org/developers/libbluray.html"
-makedepends=('git')
-source=()
-md5sums=()
-provides=('libbluray')
-conflicts=('libbluray')
-
-_gitroot="git://git.videolan.org/libbluray.git"
-_gitname="libbluray"
-
-build() {
- msg "Connecting to GIT server..."
-
- if [ -d ${srcdir}/$_gitname ] ; then
- cd $_gitname && git pull origin
- msg "The local files are updated."
- else
- git clone $_gitroot
- fi
-
- msg "GIT checkout done or server timeout"
- msg "Starting make..."
-
- cd ${srcdir}/libbluray
- ./bootstrap
- ./configure --prefix=/
- make || return 1
- make DESTDIR=${pkgdir}/usr install || return 1
-}