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

Evangelos Foutras foutrelis at gemini.archlinux.org
Sun Mar 6 15:54:12 UTC 2022


    Date: Sunday, March 6, 2022 @ 15:54:12
  Author: foutrelis
Revision: 1142595

archrelease: copy trunk to community-staging-x86_64

Added:
  fdkaac/repos/community-staging-x86_64/
  fdkaac/repos/community-staging-x86_64/PKGBUILD
    (from rev 1142593, fdkaac/trunk/PKGBUILD)

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

Copied: fdkaac/repos/community-staging-x86_64/PKGBUILD (from rev 1142593, fdkaac/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2022-03-06 15:54:12 UTC (rev 1142595)
@@ -0,0 +1,46 @@
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+# Contributor: PelPix <kylebloss at pelpix.info>
+
+pkgname=fdkaac
+pkgver=1.0.2
+pkgrel=2
+pkgdesc='Command line encoder frontend for libfdk-aac'
+arch=(x86_64)
+url=https://github.com/nu774/fdkaac
+license=(custom)
+depends=(
+  glibc
+  libfdk-aac.so
+)
+makedepends=(git)
+_tag=347e995cfc44941f6d6dfe8d4e09362a71ea8d26
+source=(git+https://github.com/nu774/fdkaac.git#tag=${_tag})
+sha256sums=(SKIP)
+
+prepare() {
+  cd fdkaac
+
+  autoreconf -fiv
+}
+
+pkgver() {
+  cd fdkaac
+
+  git describe --tags | sed 's/^v//'
+}
+
+build() {
+  cd fdkaac
+
+  ./configure \
+    --prefix=/usr \
+    --disable-rpath
+  make
+}
+
+package() {
+  make DESTDIR="${pkgdir}" -C fdkaac install
+  install -Dm 644 fdkaac/COPYING -t "${pkgdir}"/usr/share/licenses/fdkaac/
+}
+
+# vim: ts=2 sw=2 et:



More information about the arch-commits mailing list