[arch-commits] Commit in libfishsound/trunk (PKGBUILD)

2020-07-07 Thread Felix Yan via arch-commits
Date: Tuesday, July 7, 2020 @ 16:18:52
  Author: felixonmars
Revision: 659213

upgpkg: libfishsound 1.0.0-4: reproducibility rebuild

Modified:
  libfishsound/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-07 16:18:47 UTC (rev 659212)
+++ PKGBUILD2020-07-07 16:18:52 UTC (rev 659213)
@@ -4,7 +4,7 @@
 
 pkgname=libfishsound
 pkgver=1.0.0
-pkgrel=3
+pkgrel=4
 pkgdesc="A simple programming interface that wraps Xiph.Org audio codecs"
 arch=('x86_64')
 url="https://www.xiph.org/fishsound/;


[arch-commits] Commit in libfishsound/trunk (PKGBUILD)

2019-08-07 Thread David Runge via arch-commits
Date: Wednesday, August 7, 2019 @ 18:39:10
  Author: dvzrv
Revision: 498180

upgpkg: libfishsound 1.0.0-3

Simplifying installation of license and docs. Adding libfishsound.so to 
provides. Minor cleanup.

Modified:
  libfishsound/trunk/PKGBUILD

--+
 PKGBUILD |   17 +++--
 1 file changed, 7 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-07 18:34:09 UTC (rev 498179)
+++ PKGBUILD2019-08-07 18:39:10 UTC (rev 498180)
@@ -4,12 +4,13 @@
 
 pkgname=libfishsound
 pkgver=1.0.0
-pkgrel=2
+pkgrel=3
 pkgdesc="A simple programming interface that wraps Xiph.Org audio codecs"
 arch=('x86_64')
 url="https://www.xiph.org/fishsound/;
-license=('custom:BSD')
+license=('BSD')
 depends=('libvorbis' 'speex' 'flac')
+provides=('libfishsound.so')
 source=("https://github.com/kfish/${pkgname}/archive/${pkgver}.tar.gz;)
 
sha512sums=('52a98489d8cebfd92a1aa18511643108cc818379cf4470fe177c4a27e998f2652e4ffa94a50dd4f8838753714b9001eb8ee9ecb2fff858179f3bc7ffe6d7e35b')
 
@@ -28,11 +29,7 @@
 package() {
   cd "${pkgname}-${pkgver}"
   make DESTDIR="$pkgdir/" docdir=./docs install
-
-  # license
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm644 AUTHORS "${pkgdir}/usr/share/doc/${pkgname}/AUTHORS"
-  install -Dm644 ChangeLog "${pkgdir}/usr/share/doc/${pkgname}/ChangeLog"
-  install -Dm644 NEWS "${pkgdir}/usr/share/doc/${pkgname}/NEWS"
-  install -Dm644 README "${pkgdir}/usr/share/doc/${pkgname}/README"
-} 
+  install -vDm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -vDm 644 {AUTHORS,ChangeLog,NEWS,README} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}


[arch-commits] Commit in libfishsound/trunk (PKGBUILD)

2017-12-03 Thread David Runge via arch-commits
Date: Sunday, December 3, 2017 @ 20:40:02
  Author: dvzrv
Revision: 272041

upgpkg: libfishsound 1.0.0-2

Updating maintainer. Switching to https for url and source. Switching to github 
for source.
Switching to sha512sums. Adding prepare() to call autogen.sh. Installing 
various docs. Minor fixes.

Modified:
  libfishsound/trunk/PKGBUILD

--+
 PKGBUILD |   27 ++-
 1 file changed, 18 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-03 20:06:22 UTC (rev 272040)
+++ PKGBUILD2017-12-03 20:40:02 UTC (rev 272041)
@@ -1,20 +1,26 @@
 # $Id$
-# Maintainer : speps 
+# Maintainer: David Runge 
+# Contributor: speps 
 # Contributor: farid 
 
 pkgname=libfishsound
 pkgver=1.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A simple programming interface that wraps Xiph.Org audio codecs"
 arch=('x86_64')
-url="http://www.xiph.org/fishsound/;
+url="https://www.xiph.org/fishsound/;
 license=('custom:BSD')
 depends=('libvorbis' 'speex' 'flac')
-source=("http://downloads.xiph.org/releases/libfishsound/$pkgname-$pkgver.tar.gz;)
-md5sums=('02c5c7b361a35c9da3cf311d68800dab')
+source=("https://github.com/kfish/${pkgname}/archive/${pkgver}.tar.gz;)
+sha512sums=('52a98489d8cebfd92a1aa18511643108cc818379cf4470fe177c4a27e998f2652e4ffa94a50dd4f8838753714b9001eb8ee9ecb2fff858179f3bc7ffe6d7e35b')
 
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  ./autogen.sh
+}
+
 build() {
-  cd $pkgname-$pkgver
+  cd "${pkgname}-${pkgver}"
   ./configure --prefix=/usr \
   --enable-static=no
   make
@@ -21,10 +27,13 @@
 }
 
 package() {
-  cd $pkgname-$pkgver
+  cd "${pkgname}-${pkgver}"
   make DESTDIR="$pkgdir/" docdir=./docs install
 
   # license
-  install -Dm644 COPYING \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm644 AUTHORS "${pkgdir}/usr/share/doc/${pkgname}/AUTHORS"
+  install -Dm644 ChangeLog "${pkgdir}/usr/share/doc/${pkgname}/ChangeLog"
+  install -Dm644 NEWS "${pkgdir}/usr/share/doc/${pkgname}/NEWS"
+  install -Dm644 README "${pkgdir}/usr/share/doc/${pkgname}/README"
 } 


[arch-commits] Commit in libfishsound/trunk (PKGBUILD)

2014-11-28 Thread speps
Date: Friday, November 28, 2014 @ 20:28:21
  Author: speps
Revision: 123267

upgpkg: libfishsound 1.0.0-1

Modified:
  libfishsound/trunk/PKGBUILD   (properties)

Index: libfishsound/trunk/PKGBUILD
===
--- libfishsound/trunk/PKGBUILD 2014-11-28 19:27:14 UTC (rev 123266)
+++ libfishsound/trunk/PKGBUILD 2014-11-28 19:28:21 UTC (rev 123267)

Property changes on: libfishsound/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property