Date: Tuesday, November 1, 2022 @ 13:20:44
Author: foutrelis
Revision: 459834
archrelease: copy trunk to staging-x86_64
Added:
libshout/repos/staging-x86_64/
libshout/repos/staging-x86_64/PKGBUILD
(from rev 459833, libshout/trunk/PKGBUILD)
----------+
PKGBUILD | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
Copied: libshout/repos/staging-x86_64/PKGBUILD (from rev 459833,
libshout/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2022-11-01 13:20:44 UTC (rev 459834)
@@ -0,0 +1,27 @@
+# Maintainer: Giovanni Scafora <[email protected]>
+# Contributor: arjan <[email protected]>
+# Contributor: Jason Chu <[email protected]>
+
+pkgname=libshout
+pkgver=2.4.6
+pkgrel=2
+epoch=1
+pkgdesc="Library for accessing a shoutcast/icecast server"
+arch=('x86_64')
+depends=('libvorbis' 'libtheora' 'speex' 'openssl')
+url="https://www.icecast.org/"
+options=('!emptydirs')
+license=('LGPL')
+source=("https://downloads.xiph.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz")
+sha512sums=('e8478cdbf9a27674c16a7b620d1576f2e31a47262b8e29b314d0f46d4e5be24b9a29790b7b226f48939bc34cacf5734fae0aa5686c7ed5879cdbd827ff8e0339')
+
+build() {
+ cd ${pkgname}-${pkgver}
+ ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+ make
+}
+
+package() {
+ cd ${pkgname}-${pkgver}
+ make DESTDIR="${pkgdir}" install
+}