[arch-commits] Commit in ecasound/repos (2 files)

Evangelos Foutras foutrelis at archlinux.org
Fri Mar 19 22:09:53 UTC 2021


    Date: Friday, March 19, 2021 @ 22:09:53
  Author: foutrelis
Revision: 895274

archrelease: copy trunk to community-staging-x86_64

Added:
  ecasound/repos/community-staging-x86_64/
  ecasound/repos/community-staging-x86_64/PKGBUILD
    (from rev 895272, ecasound/trunk/PKGBUILD)

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

Copied: ecasound/repos/community-staging-x86_64/PKGBUILD (from rev 895272, ecasound/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2021-03-19 22:09:53 UTC (rev 895274)
@@ -0,0 +1,58 @@
+# 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.3
+pkgrel=4
+pkgdesc="Command-line multitrack audio processor"
+arch=('x86_64')
+url="https://ecasound.seul.org/ecasound/"
+license=('GPL2' 'LGPL2.1')
+groups=('pro-audio')
+depends=('gcc-libs' 'glibc' )
+makedepends=('alsa-lib' 'audiofile' 'jack' 'lv2' 'liblo' 'libmikmod'
+'libsamplerate' 'libsndfile' 'lilv' 'ncurses' 'python' 'readline' 'ruby')
+optdepends=('bash: for libecasoundc-config and libecasound-config'
+            'lame: MP3 encoding'
+            'libfaad2: for .aac/.m4a/.mp4 file support'
+            'libfaac: for .aac/.m4a/.mp4 file support'
+            'libmikmod: for tracker module'
+            'mpg123: MP3 decoding'
+            'python: for ecamonitor'
+            'ruby: ECI API'
+            'timidity++: for .mid file support'
+            'vorbis-tools: for .ogg file support')
+provides=('lv2-host')
+source=("https://ecasound.seul.org/download/$pkgname-$pkgver.tar.gz")
+sha512sums=('4f70e6f54cd05194a4ffe80905e7488d16d32d684c87736dfdac7b3aebf3d20cbf417964d75e00e781f6f0614b8b699061c69fcbf7e1761d66ce1abfcd5f1140')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  # lv2core is deprecated in favor of lv2:
+  # https://sourceforge.net/p/ecasound/bugs/52/
+  sed -e 's/lv2core/lv2/g' -i configure.ac
+  # install ruby integration to vendor_ruby
+  sed -e 's/sitedir/vendordir/' -i configure.ac
+  # using c++98 lilv is not compatible
+  sed -e 's/c++98/c++11/' -i configure.ac
+  autoreconf -vfi
+}
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  depends+=('libasound.so' 'libjack.so' 'libaudiofile.so' 'liblo.so'
+  'liblilv-0.so' 'libncursesw.so' 'libreadline.so' 'libsamplerate.so'
+  'libsndfile.so')
+  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:



More information about the arch-commits mailing list