[arch-commits] Commit in fdkaac/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Tue Jul 7 12:51:31 UTC 2020
Date: Tuesday, July 7, 2020 @ 12:51:30
Author: felixonmars
Revision: 658250
archrelease: copy trunk to community-staging-x86_64
Added:
fdkaac/repos/community-staging-x86_64/
fdkaac/repos/community-staging-x86_64/PKGBUILD
(from rev 658249, fdkaac/trunk/PKGBUILD)
----------+
PKGBUILD | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
Copied: fdkaac/repos/community-staging-x86_64/PKGBUILD (from rev 658249, fdkaac/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2020-07-07 12:51:30 UTC (rev 658250)
@@ -0,0 +1,38 @@
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+# Contributor: PelPix <kylebloss at pelpix.info>
+
+pkgname=fdkaac
+pkgver=1.0.0
+pkgrel=2
+pkgdesc='Command line encoder frontend for libfdk-aac'
+arch=(x86_64)
+url='https://github.com/nu774/fdkaac'
+license=(custom)
+depends=(libfdk-aac.so)
+makedepends=(git)
+source=(git+https://github.com/nu774/fdkaac.git#tag=${pkgver})
+sha256sums=(SKIP)
+
+prepare() {
+ cd fdkaac
+
+ autoreconf -fiv
+}
+
+build() {
+ cd fdkaac
+
+ ./configure \
+ --prefix='/usr' \
+ --disable-rpath
+ make
+}
+
+package() {
+ cd fdkaac
+
+ make DESTDIR="${pkgdir}" install
+ install -Dm 644 COPYING -t "${pkgdir}"/usr/share/licenses/fdkaac/
+}
+
+# vim: ts=2 sw=2 et:
More information about the arch-commits
mailing list