summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorsL1pKn072019-02-12 16:45:26 +0100
committersL1pKn072019-02-12 16:45:26 +0100
commit656d678ef1860090938ed90356ff132abc0d104f (patch)
tree705c0154d4bae6aa283fbab1cf5138c0c3a6ea91
parentcebdf8d7468ce5c312b92b1c3cac0ed53a569404 (diff)
downloadaur-656d678ef1860090938ed90356ff132abc0d104f.tar.gz
bump
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD12
2 files changed, 9 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index cfb68c704e0d..8e3d1cd28aea 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,8 @@
# Generated by mksrcinfo v8
-# Thu Apr 12 13:47:35 UTC 2018
+# Tue Feb 12 15:45:22 UTC 2019
pkgbase = libbdplus-git
pkgdesc = Open implementation of BD+ protocol. (GIT version)
- pkgver = 0.1.2.31.gc7f1e8b
+ pkgver = 0.1.2.33.g1dea325
pkgrel = 1
url = http://www.videolan.org/developers/libbdplus.html
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 4b65309e84bc..5d36ac68a737 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Gustavo Alvarez <sl1pkn07@gmail.com>
pkgname=libbdplus-git
-pkgver=0.1.2.31.gc7f1e8b
+pkgver=0.1.2.33.g1dea325
pkgrel=1
pkgdesc="Open implementation of BD+ protocol. (GIT version)"
arch=('x86_64')
@@ -22,13 +22,15 @@ pkgver() {
}
prepare() {
+ mkdir -p build
+
cd libbdplus
- ./bootstrap
+ autoreconf -vfi
}
build() {
- cd libbdplus
- ./configure \
+ cd build
+ ../libbdplus/configure \
--prefix=/usr \
--disable-static
@@ -36,5 +38,5 @@ build() {
}
package() {
- make -C libbdplus DESTDIR="${pkgdir}" install
+ make -C build DESTDIR="${pkgdir}" install
}