Date: Tuesday, May 19, 2020 @ 08:40:44
  Author: felixonmars
Revision: 386423

archrelease: copy trunk to staging-x86_64

Added:
  libvorbis/repos/staging-x86_64/
  libvorbis/repos/staging-x86_64/PKGBUILD
    (from rev 386420, libvorbis/trunk/PKGBUILD)

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

Copied: libvorbis/repos/staging-x86_64/PKGBUILD (from rev 386420, 
libvorbis/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD                             (rev 0)
+++ staging-x86_64/PKGBUILD     2020-05-19 08:40:44 UTC (rev 386423)
@@ -0,0 +1,41 @@
+# Maintainer: Maxime Gauduin <[email protected]>
+# Contributor: BartÅ‚omiej Piotrowski <[email protected]>
+# Contributor: Tobias Kieslich <[email protected]>
+# Contributor: dorphell <[email protected]>
+# Contributor: John Proctor <[email protected]>
+
+pkgname=libvorbis
+pkgver=1.3.6
+pkgrel=2
+pkgdesc='Vorbis codec library'
+arch=('x86_64')
+url='https://www.xiph.org/vorbis/'
+license=('BSD')
+depends=('libogg')
+provides=('libvorbis.so' 'libvorbisenc.so' 'libvorbisfile.so')
+source=("https://downloads.xiph.org/releases/vorbis/libvorbis-${pkgver}.tar.gz";)
+sha256sums=('6ed40e0241089a42c48604dc00e362beee00036af2d8b3f46338031c9e0351cb')
+
+build() {
+  cd libvorbis-${pkgver}
+
+  ./configure \
+    --prefix='/usr' \
+    --disable-static
+  make
+}
+
+check() {
+  cd libvorbis-${pkgver}
+
+  make -j1 check
+}
+
+package() {
+  cd libvorbis-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 COPYING -t "${pkgdir}"/usr/share/licenses/libvorbis
+}
+
+# vim: ts=2 sw=2 et:

Reply via email to