[arch-commits] Commit in taglib/repos (staging-x86_64 staging-x86_64/PKGBUILD)

Felix Yan felixonmars at archlinux.org
Fri Nov 9 23:08:52 UTC 2018


    Date: Friday, November 9, 2018 @ 23:08:51
  Author: felixonmars
Revision: 338747

archrelease: copy trunk to staging-x86_64

Added:
  taglib/repos/staging-x86_64/
  taglib/repos/staging-x86_64/PKGBUILD
    (from rev 338746, taglib/trunk/PKGBUILD)

----------+
 PKGBUILD |   37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

Copied: taglib/repos/staging-x86_64/PKGBUILD (from rev 338746, taglib/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD	                        (rev 0)
+++ staging-x86_64/PKGBUILD	2018-11-09 23:08:51 UTC (rev 338747)
@@ -0,0 +1,37 @@
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+# Contributor: Tom Gundersen <teg at jklm.no>
+# Contributor: Ike Devolder <ike.devolder at gmail.com>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: Tobias Powalowski <tpowa at archlinux.org>
+
+pkgname=taglib
+pkgver=1.11.1
+pkgrel=2
+pkgdesc="A Library for reading and editing the meta-data of several popular audio formats"
+arch=(x86_64)
+url="http://taglib.github.io/"
+license=(LGPL MPL)
+depends=(zlib)
+makedepends=(cmake boost)
+source=("http://taglib.github.io/releases/$pkgname-$pkgver.tar.gz")
+md5sums=('cee7be0ccfc892fa433d6c837df9522a')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DBUILD_SHARED_LIBS=ON \
+    -DWITH_MP4=ON \
+    -DWITH_ASF=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}



More information about the arch-commits mailing list