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

Felix Yan felixonmars at archlinux.org
Tue Jul 7 16:19:02 UTC 2020


    Date: Tuesday, July 7, 2020 @ 16:19:01
  Author: felixonmars
Revision: 659214

archrelease: copy trunk to community-staging-x86_64

Added:
  libfishsound/repos/community-staging-x86_64/
  libfishsound/repos/community-staging-x86_64/PKGBUILD
    (from rev 659213, libfishsound/trunk/PKGBUILD)

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

Copied: libfishsound/repos/community-staging-x86_64/PKGBUILD (from rev 659213, libfishsound/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2020-07-07 16:19:01 UTC (rev 659214)
@@ -0,0 +1,35 @@
+# Maintainer: David Runge <dave at sleepmap.de>
+# Contributor: speps <speps at aur dot archlinux dot org>
+# Contributor: farid <farid at archlinux-br.org>
+
+pkgname=libfishsound
+pkgver=1.0.0
+pkgrel=4
+pkgdesc="A simple programming interface that wraps Xiph.Org audio codecs"
+arch=('x86_64')
+url="https://www.xiph.org/fishsound/"
+license=('BSD')
+depends=('libvorbis' 'speex' 'flac')
+provides=('libfishsound.so')
+source=("https://github.com/kfish/${pkgname}/archive/${pkgver}.tar.gz")
+sha512sums=('52a98489d8cebfd92a1aa18511643108cc818379cf4470fe177c4a27e998f2652e4ffa94a50dd4f8838753714b9001eb8ee9ecb2fff858179f3bc7ffe6d7e35b')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  ./autogen.sh
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr \
+              --enable-static=no
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="$pkgdir/" docdir=./docs install
+  install -vDm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -vDm 644 {AUTHORS,ChangeLog,NEWS,README} \
+    -t "${pkgdir}/usr/share/doc/${pkgname}"
+}



More information about the arch-commits mailing list