[arch-commits] Commit in ams/repos (10 files)

Evangelos Foutras foutrelis at archlinux.org
Mon Dec 7 01:37:05 UTC 2015


    Date: Monday, December 7, 2015 @ 02:37:04
  Author: foutrelis
Revision: 149496

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  ams/repos/community-staging-i686/
  ams/repos/community-staging-i686/PKGBUILD
    (from rev 149493, ams/trunk/PKGBUILD)
  ams/repos/community-staging-i686/ams.desktop
    (from rev 149493, ams/trunk/ams.desktop)
  ams/repos/community-staging-i686/ams.install
    (from rev 149493, ams/trunk/ams.install)
  ams/repos/community-staging-i686/ams.png
    (from rev 149493, ams/trunk/ams.png)
  ams/repos/community-staging-x86_64/
  ams/repos/community-staging-x86_64/PKGBUILD
    (from rev 149494, ams/trunk/PKGBUILD)
  ams/repos/community-staging-x86_64/ams.desktop
    (from rev 149494, ams/trunk/ams.desktop)
  ams/repos/community-staging-x86_64/ams.install
    (from rev 149494, ams/trunk/ams.install)
  ams/repos/community-staging-x86_64/ams.png
    (from rev 149494, ams/trunk/ams.png)

--------------------------------------+
 community-staging-i686/PKGBUILD      |   61 +++++++++++++++++++++++++++++++++
 community-staging-i686/ams.desktop   |    9 ++++
 community-staging-i686/ams.install   |   11 +++++
 community-staging-x86_64/PKGBUILD    |   61 +++++++++++++++++++++++++++++++++
 community-staging-x86_64/ams.desktop |    9 ++++
 community-staging-x86_64/ams.install |   11 +++++
 6 files changed, 162 insertions(+)

Copied: ams/repos/community-staging-i686/PKGBUILD (from rev 149493, ams/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD	                        (rev 0)
+++ community-staging-i686/PKGBUILD	2015-12-07 01:37:04 UTC (rev 149496)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer : speps <speps at aur dot archlinux dot org>
+
+pkgname=ams
+pkgver=2.1.1
+pkgrel=2
+pkgdesc="A realtime modular synthesizer and effect processor"
+arch=('i686' 'x86_64')
+url="http://alsamodular.sourceforge.net/"
+license=('GPL')
+depends=('qt4' 'fftw' 'jack' 'ladspa' 'liblo' 'zita-alsa-pcmi')
+optdepends=('amb-plugins: ambisonic plugins'
+            'mcp-plugins: phaser, chorus and moog vcf plugins'
+            'rev-plugins: zita-rev1 based reverb plugins'
+            'swh-plugins: Steve Harris plugins'
+            'vco-plugins: oscillator plugins'
+            'fil-plugins: equaliser plugins'
+            'tap-plugins: toms audio plugins'
+            'wah-plugins: wah audio plugins'
+            'g2reverb: greverb based plugins'
+            'cmt: Computer Music Toolkit plugins'
+            'blop: bandlimited oscillator plugins'
+            'pvoc: phase-vocoding plugins'
+            'caps: the C* audio plugins')
+install="$pkgname.install"
+source=("http://downloads.sourceforge.net/project/alsamodular/alsamodular/$pkgver/$pkgname-$pkgver.tar.bz2"
+        "$pkgname.desktop" "$pkgname.png")
+md5sums=('3255bce2d3c1a7e0aad07496001b7cc9'
+         'ffa277cffd52254f0297cbc2f200767e'
+         '0349171d5431f1c6e56085f080eb8c68')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # strip unwanted optimization flags
+  sed -i '/AMS_OPT_CXXFLAGS=/d' configure
+
+  # fix libs concat
+  sed -e 's/LIBS+=\$LIBSsave/LIBS="$LIBS $LIBSsave"/' \
+      -e 's/CFLAGS+=\$CFLAGSsave/CFLAGS="$CFLAGS $CFLAGSsave"/' \
+      -i configure
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir/" install
+
+  # desktop file
+  install -Dm644 ../$pkgname.desktop \
+    "$pkgdir/usr/share/applications/$pkgname.desktop"
+
+  # icon
+  install -Dm644 ../$pkgname.png \
+    "$pkgdir/usr/share/pixmaps/$pkgname.png"
+}

Copied: ams/repos/community-staging-i686/ams.desktop (from rev 149493, ams/trunk/ams.desktop)
===================================================================
--- community-staging-i686/ams.desktop	                        (rev 0)
+++ community-staging-i686/ams.desktop	2015-12-07 01:37:04 UTC (rev 149496)
@@ -0,0 +1,9 @@
+[Desktop Entry]
+Type=Application
+Name=Alsa Modular Synth
+Comment=Realtime modular synthesizer and effect processor
+Exec=ams
+Icon=ams
+Terminal=false
+Categories=Application;AudioVideo;AudioVideo;Qt;X-Jack;X-Sound;
+StartupNotify=true
\ No newline at end of file

Copied: ams/repos/community-staging-i686/ams.install (from rev 149493, ams/trunk/ams.install)
===================================================================
--- community-staging-i686/ams.install	                        (rev 0)
+++ community-staging-i686/ams.install	2015-12-07 01:37:04 UTC (rev 149496)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: ams/repos/community-staging-i686/ams.png (from rev 149493, ams/trunk/ams.png)
===================================================================
(Binary files differ)

Copied: ams/repos/community-staging-x86_64/PKGBUILD (from rev 149494, ams/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2015-12-07 01:37:04 UTC (rev 149496)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer : speps <speps at aur dot archlinux dot org>
+
+pkgname=ams
+pkgver=2.1.1
+pkgrel=2
+pkgdesc="A realtime modular synthesizer and effect processor"
+arch=('i686' 'x86_64')
+url="http://alsamodular.sourceforge.net/"
+license=('GPL')
+depends=('qt4' 'fftw' 'jack' 'ladspa' 'liblo' 'zita-alsa-pcmi')
+optdepends=('amb-plugins: ambisonic plugins'
+            'mcp-plugins: phaser, chorus and moog vcf plugins'
+            'rev-plugins: zita-rev1 based reverb plugins'
+            'swh-plugins: Steve Harris plugins'
+            'vco-plugins: oscillator plugins'
+            'fil-plugins: equaliser plugins'
+            'tap-plugins: toms audio plugins'
+            'wah-plugins: wah audio plugins'
+            'g2reverb: greverb based plugins'
+            'cmt: Computer Music Toolkit plugins'
+            'blop: bandlimited oscillator plugins'
+            'pvoc: phase-vocoding plugins'
+            'caps: the C* audio plugins')
+install="$pkgname.install"
+source=("http://downloads.sourceforge.net/project/alsamodular/alsamodular/$pkgver/$pkgname-$pkgver.tar.bz2"
+        "$pkgname.desktop" "$pkgname.png")
+md5sums=('3255bce2d3c1a7e0aad07496001b7cc9'
+         'ffa277cffd52254f0297cbc2f200767e'
+         '0349171d5431f1c6e56085f080eb8c68')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # strip unwanted optimization flags
+  sed -i '/AMS_OPT_CXXFLAGS=/d' configure
+
+  # fix libs concat
+  sed -e 's/LIBS+=\$LIBSsave/LIBS="$LIBS $LIBSsave"/' \
+      -e 's/CFLAGS+=\$CFLAGSsave/CFLAGS="$CFLAGS $CFLAGSsave"/' \
+      -i configure
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir/" install
+
+  # desktop file
+  install -Dm644 ../$pkgname.desktop \
+    "$pkgdir/usr/share/applications/$pkgname.desktop"
+
+  # icon
+  install -Dm644 ../$pkgname.png \
+    "$pkgdir/usr/share/pixmaps/$pkgname.png"
+}

Copied: ams/repos/community-staging-x86_64/ams.desktop (from rev 149494, ams/trunk/ams.desktop)
===================================================================
--- community-staging-x86_64/ams.desktop	                        (rev 0)
+++ community-staging-x86_64/ams.desktop	2015-12-07 01:37:04 UTC (rev 149496)
@@ -0,0 +1,9 @@
+[Desktop Entry]
+Type=Application
+Name=Alsa Modular Synth
+Comment=Realtime modular synthesizer and effect processor
+Exec=ams
+Icon=ams
+Terminal=false
+Categories=Application;AudioVideo;AudioVideo;Qt;X-Jack;X-Sound;
+StartupNotify=true
\ No newline at end of file

Copied: ams/repos/community-staging-x86_64/ams.install (from rev 149494, ams/trunk/ams.install)
===================================================================
--- community-staging-x86_64/ams.install	                        (rev 0)
+++ community-staging-x86_64/ams.install	2015-12-07 01:37:04 UTC (rev 149496)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: ams/repos/community-staging-x86_64/ams.png (from rev 149494, ams/trunk/ams.png)
===================================================================
(Binary files differ)



More information about the arch-commits mailing list