[arch-commits] Commit in libfdk-aac/repos (2 files)

Felix Yan felixonmars at archlinux.org
Tue Jul 7 16:34:58 UTC 2020


    Date: Tuesday, July 7, 2020 @ 16:34:57
  Author: felixonmars
Revision: 659306

archrelease: copy trunk to community-staging-x86_64

Added:
  libfdk-aac/repos/community-staging-x86_64/
  libfdk-aac/repos/community-staging-x86_64/PKGBUILD
    (from rev 659305, libfdk-aac/trunk/PKGBUILD)

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

Copied: libfdk-aac/repos/community-staging-x86_64/PKGBUILD (from rev 659305, libfdk-aac/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2020-07-07 16:34:57 UTC (rev 659306)
@@ -0,0 +1,45 @@
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+# Contributor: PelPix <kylebloss at pelpix.info>
+# Contributor: DrZaius <lou[at]fakeoutdoorsman[dot]com>
+
+pkgname=libfdk-aac
+pkgver=2.0.1
+pkgrel=2
+pkgdesc='Fraunhofer FDK AAC codec library'
+arch=(x86_64)
+url=https://sourceforge.net/projects/opencore-amr/
+license=(custom)
+makedepends=(git)
+provides=(libfdk-aac.so)
+source=(git+https://github.com/mstorsjo/fdk-aac.git#tag=d387d3b6ed79ff9a82c60440bdd86e6e5e324bec)
+sha256sums=(SKIP)
+
+pkgver() {
+  cd fdk-aac
+
+  git describe --tags | sed 's/^v//'
+}
+
+prepare() {
+  cd fdk-aac
+
+  ./autogen.sh
+}
+
+build() {
+  cd fdk-aac
+
+  ./configure \
+    --prefix=/usr \
+    --disable-static
+  make
+}
+
+package () {
+  cd fdk-aac
+
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 NOTICE -t "${pkgdir}"/usr/share/licenses/libfdk-aac/
+}
+
+# vim: ts=2 sw=2 et:



More information about the arch-commits mailing list