[arch-commits] Commit in zita-resampler/repos/extra-x86_64 (PKGBUILD PKGBUILD)

David Runge dvzrv at archlinux.org
Sat May 16 09:01:39 UTC 2020


    Date: Saturday, May 16, 2020 @ 09:01:39
  Author: dvzrv
Revision: 383756

archrelease: copy trunk to extra-x86_64

Added:
  zita-resampler/repos/extra-x86_64/PKGBUILD
    (from rev 383755, zita-resampler/trunk/PKGBUILD)
Deleted:
  zita-resampler/repos/extra-x86_64/PKGBUILD

----------+
 PKGBUILD |  110 +++++++++++++++++++++++++++++--------------------------------
 1 file changed, 53 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2020-05-16 09:01:34 UTC (rev 383755)
+++ PKGBUILD	2020-05-16 09:01:39 UTC (rev 383756)
@@ -1,57 +0,0 @@
-# Maintainer: David Runge <dave at sleepmap.de>
-# Contributor: speps <speps at aur dot archlinux dot org>
-# Contributor: Philipp Überbacher <murks at lavabit dot com>
-
-pkgname=zita-resampler
-pkgver=1.6.2
-pkgrel=2
-pkgdesc="A C++ library for resampling audio signals"
-url="https://kokkinizita.linuxaudio.org/linuxaudio/"
-arch=('x86_64')
-license=('GPL3')
-depends=('gcc-libs' 'glibc')
-makedepends=('libsndfile')
-optdepends=('libsndfile: for zresample and zretune')
-provides=('libzita-resampler.so')
-source=("https://kokkinizita.linuxaudio.org/linuxaudio/downloads/${pkgname}-${pkgver}.tar.bz2")
-sha512sums=('d547419dd222c8a399d8f196efa1ec88a3f781275b696ae2fe1bb6e2fc329285affb8aace85972c304ad256becc4a155534dd5ef4ce3c57cbc9dcca0122b670c')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  # FS#36248 - strip march=native
-  sed -e '/native/d' \
-      -i {source,apps}/Makefile
-  # removing local call to ldconfig
-  sed -e 's/ldconfig/& -N $(DESTDIR)\/$(LIBDIR)/' \
-      -i source/Makefile
-  # fix use of BINDIR without preceeding DESTDIR
-  # fix use of MANDIR without preceeding DESTDIR
-  sed -e 's/\ $(BINDIR)/\ $(DESTDIR)$(BINDIR)/' \
-      -e 's/\ $(MANDIR)/\ $(DESTDIR)$(MANDIR)/' \
-      -i apps/Makefile
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  # libs
-  make -C source
-  (
-    cd source
-    # create lib link for building apps
-    ln -sv "lib${pkgname}.so.${pkgver}" "lib${pkgname}.so"
-  )
-  # apps
-  make LDFLAGS+=" -L../source" CXXFLAGS+=" -I../source" -C apps
-  # cleanup link
-  rm -rv "source/lib${pkgname}.so"
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make -C source DESTDIR="$pkgdir/" PREFIX=/usr SUFFIX="" install
-  make -C apps DESTDIR="$pkgdir/" PREFIX=/usr install
-  # docs
-  install -vDm 644 {AUTHORS,README} docs/* \
-    -t "${pkgdir}/usr/share/doc/${pkgname}"
-}
-

Copied: zita-resampler/repos/extra-x86_64/PKGBUILD (from rev 383755, zita-resampler/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2020-05-16 09:01:39 UTC (rev 383756)
@@ -0,0 +1,53 @@
+# Maintainer: David Runge <dvzrv at archlinux.org>
+# Contributor: speps <speps at aur dot archlinux dot org>
+# Contributor: Philipp Überbacher <murks at lavabit dot com>
+
+pkgname=zita-resampler
+pkgver=1.6.2
+pkgrel=3
+pkgdesc="A C++ library for resampling audio signals"
+url="https://kokkinizita.linuxaudio.org/linuxaudio/"
+arch=('x86_64')
+license=('GPL3')
+depends=('gcc-libs' 'glibc')
+makedepends=('libsndfile')
+optdepends=('libsndfile: for zresample and zretune')
+provides=('libzita-resampler.so')
+source=("https://kokkinizita.linuxaudio.org/linuxaudio/downloads/${pkgname}-${pkgver}.tar.bz2")
+sha512sums=('d547419dd222c8a399d8f196efa1ec88a3f781275b696ae2fe1bb6e2fc329285affb8aace85972c304ad256becc4a155534dd5ef4ce3c57cbc9dcca0122b670c')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  # FS#36248 - strip march=native
+  sed -e '/native/d' \
+      -i {source,apps}/Makefile
+  # removing local call to ldconfig
+  sed -e 's/ldconfig/& -N $(DESTDIR)\/$(LIBDIR)/' \
+      -i source/Makefile
+  # fix use of BINDIR without preceeding DESTDIR
+  # fix use of MANDIR without preceeding DESTDIR
+  sed -e 's/\ $(BINDIR)/\ $(DESTDIR)$(BINDIR)/' \
+      -e 's/\ $(MANDIR)/\ $(DESTDIR)$(MANDIR)/' \
+      -i apps/Makefile
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  # libs
+  make -C source
+  # create lib link for building apps
+  ln -sv "lib${pkgname}.so.${pkgver}" "source/lib${pkgname}.so"
+  # apps
+  make LDFLAGS+=" -L../source" CXXFLAGS+=" -I../source" -C apps
+  # cleanup link
+  rm -rv "source/lib${pkgname}.so"
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make -C source DESTDIR="$pkgdir/" PREFIX=/usr SUFFIX="" install
+  make -C apps DESTDIR="$pkgdir/" PREFIX=/usr install
+  # docs
+  install -vDm 644 {AUTHORS,README} docs/* \
+    -t "${pkgdir}/usr/share/doc/${pkgname}"
+}



More information about the arch-commits mailing list