[arch-commits] Commit in ecasound/repos/community-x86_64 (PKGBUILD PKGBUILD)

David Runge dvzrv at archlinux.org
Mon Dec 23 21:06:39 UTC 2019


    Date: Monday, December 23, 2019 @ 21:06:38
  Author: dvzrv
Revision: 539559

archrelease: copy trunk to community-x86_64

Added:
  ecasound/repos/community-x86_64/PKGBUILD
    (from rev 539558, ecasound/trunk/PKGBUILD)
Deleted:
  ecasound/repos/community-x86_64/PKGBUILD

----------+
 PKGBUILD |  126 ++++++++++++++++++++++++++++---------------------------------
 1 file changed, 59 insertions(+), 67 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2019-12-23 21:06:33 UTC (rev 539558)
+++ PKGBUILD	2019-12-23 21:06:38 UTC (rev 539559)
@@ -1,67 +0,0 @@
-# Maintainer: David Runge <dvzrv at archlinux.org>
-# Contributor: Ray Rashif <schiv at archlinux.org>
-# Contributor: Eric Belanger <eric at archlinux.org>
-# Contributor: Tom Newsom <Jeepster at gmx.co.uk>
-
-pkgname=ecasound
-pkgver=2.9.2
-pkgrel=2
-pkgdesc="Command-line multitrack audio processor"
-arch=('x86_64')
-url="https://ecasound.seul.org/ecasound/"
-license=('GPL' 'LGPL')
-groups=('pro-audio')
-depends=('alsa-lib' 'glibc' 'gcc-libs' 'libjack.so' 'libaudiofile.so'
-'liblo.so' 'liblilv-0.so' 'libreadline.so' 'libsndfile' 'libncursesw.so')
-makedepends=('lv2' 'python2' 'ruby')
-optdepends=('python2: ecamonitor, ECI API'
-            'ruby: ECI API'
-            'mpg123: MP3 decoding'
-            'lame: MP3 encoding'
-            'vorbis-tools: Ogg Vorbis decoding/encoding'
-            'faad2: AAC decoding'
-            'faac: AAC encoding'
-            'timidity++: MIDI file input'
-            'libmikmod: tracker module')
-source=("https://ecasound.seul.org/download/$pkgname-$pkgver.tar.gz")
-options=('staticlibs')
-sha512sums=('fca6b37b5f669ba8616e48afe24fbfd53da3cb4987d2d6a2d6167843de34371a4c2cdceb6faf677462d6efb4069dd1d27ffafc1ceb19de56f4a051f077ada07b')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  # install ruby integration to vendor_ruby
-  sed -e 's/sitedir/vendordir/' -i configure.ac
-
-  # lv2core is deprecated in favor of lv2:
-  # https://sourceforge.net/p/ecasound/bugs/52/
-  sed -e 's/lv2core/lv2/g' -i configure.ac
-
-  # fix python2 shebang:
-  # https://sourceforge.net/p/ecasound/mailman/message/36698740/
-  sed -e 's/env python/env python2/' \
-      -i 'ecatools/ecamonitor' \
-      -i "examples/"*.py \
-      -i "pyecasound/"*.py
-
-  autoreconf -vfi
-}
-build() {
-  cd "$pkgname-$pkgver"
-  export PYTHONPATH="/usr/bin/python2"
-  ./configure --prefix=/usr \
-              --with-python-includes=/usr/include/python2.7 \
-              --with-python-modules=/usr/lib/python2.7 \
-              --enable-liboil=no
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
-  # docs
-  install -vDm 644 {AUTHORS,BUGS,NEWS,README,RELNOTES,TODO} \
-    -t "${pkgdir}/usr/share/doc/${pkgname}/"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ecasound/repos/community-x86_64/PKGBUILD (from rev 539558, ecasound/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2019-12-23 21:06:38 UTC (rev 539559)
@@ -0,0 +1,59 @@
+# Maintainer: David Runge <dvzrv at archlinux.org>
+# Contributor: Ray Rashif <schiv at archlinux.org>
+# Contributor: Eric Belanger <eric at archlinux.org>
+# Contributor: Tom Newsom <Jeepster at gmx.co.uk>
+
+pkgname=ecasound
+pkgver=2.9.2
+pkgrel=3
+pkgdesc="Command-line multitrack audio processor"
+arch=('x86_64')
+url="https://ecasound.seul.org/ecasound/"
+license=('GPL' 'LGPL')
+groups=('pro-audio')
+depends=('alsa-lib' 'glibc' 'gcc-libs' 'libjack.so' 'libaudiofile.so'
+'liblo.so' 'liblilv-0.so' 'libreadline.so' 'libsndfile' 'libncursesw.so')
+makedepends=('lv2' 'ruby')
+optdepends=('ruby: ECI API'
+            'mpg123: MP3 decoding'
+            'lame: MP3 encoding'
+            'vorbis-tools: Ogg Vorbis decoding/encoding'
+            'faad2: AAC decoding'
+            'faac: AAC encoding'
+            'timidity++: MIDI file input'
+            'libmikmod: tracker module')
+source=("https://ecasound.seul.org/download/$pkgname-$pkgver.tar.gz")
+options=('staticlibs')
+sha512sums=('fca6b37b5f669ba8616e48afe24fbfd53da3cb4987d2d6a2d6167843de34371a4c2cdceb6faf677462d6efb4069dd1d27ffafc1ceb19de56f4a051f077ada07b')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  # install ruby integration to vendor_ruby
+  sed -e 's/sitedir/vendordir/' -i configure.ac
+
+  # lv2core is deprecated in favor of lv2:
+  # https://sourceforge.net/p/ecasound/bugs/52/
+  sed -e 's/lv2core/lv2/g' -i configure.ac
+  autoreconf -vfi
+}
+build() {
+  cd "$pkgname-$pkgver"
+  export PYTHONPATH="/usr/bin/python2"
+  ./configure --prefix=/usr \
+              --disable-pyecasound \
+              --disable-python
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" install
+  # docs
+  install -vDm 644 {AUTHORS,BUGS,NEWS,README,RELNOTES,TODO} \
+    -t "${pkgdir}/usr/share/doc/${pkgname}/"
+  # ecamonitor is python2 only and not supported until upstream ports it
+  rm -v "${pkgdir}/usr/bin/ecamonitor"
+}
+
+# vim:set ts=2 sw=2 et:



More information about the arch-commits mailing list