summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
Diffstat (limited to 'community')
-rw-r--r--community/aeolus/PKGBUILD45
-rw-r--r--community/aeolus/aeolus.conf3
-rw-r--r--community/amb-plugins/PKGBUILD27
-rw-r--r--community/ams/PKGBUILD60
-rw-r--r--community/ams/ams.desktop9
-rw-r--r--community/ams/ams.install (renamed from community/qupzilla/qupzilla.install)1
-rw-r--r--community/ams/ams.pngbin0 -> 8303 bytes
-rw-r--r--community/blop/PKGBUILD25
-rw-r--r--community/caps/PKGBUILD31
-rw-r--r--community/clalsadrv/PKGBUILD46
-rw-r--r--community/clthreads/PKGBUILD28
-rw-r--r--community/clxclient/PKGBUILD36
-rw-r--r--community/fil-plugins/PKGBUILD27
-rw-r--r--community/go/PKGBUILD24
-rw-r--r--community/go/go.sh1
-rw-r--r--community/mcp-plugins/PKGBUILD27
-rw-r--r--community/proxychains/PKGBUILD34
-rw-r--r--community/pvoc/PKGBUILD27
-rw-r--r--community/qupzilla/PKGBUILD37
-rw-r--r--community/rev-plugins/PKGBUILD27
-rw-r--r--community/tap-plugins/PKGBUILD31
-rw-r--r--community/tig/PKGBUILD4
-rw-r--r--community/vco-plugins/PKGBUILD27
-rw-r--r--community/virtualbox-modules/PKGBUILD4
-rw-r--r--community/wah-plugins/PKGBUILD30
-rw-r--r--community/zita-alsa-pcmi/PKGBUILD47
26 files changed, 604 insertions, 54 deletions
diff --git a/community/aeolus/PKGBUILD b/community/aeolus/PKGBUILD
new file mode 100644
index 000000000..bf9deece4
--- /dev/null
+++ b/community/aeolus/PKGBUILD
@@ -0,0 +1,45 @@
+# $Id: PKGBUILD 95511 2013-08-13 03:47:20Z speps $
+# Maintainer : speps <speps at aur dot archlinux dot org>
+# Contributor: Tom K <tomk@runbox.com>
+# Contributor: Shinlun Hsieh <yngwiexx@yahoo.com.tw>
+# Contributor: Christoph Zeiler <arch at moonblade dot org>
+# Contributor: Philipp Überbacher <murks at lavabit dot com>
+
+_stopver=0.3.0
+pkgname=aeolus
+pkgver=0.9.0
+pkgrel=1
+pkgdesc="Synthesised pipe organ emulator"
+arch=('i686' 'x86_64')
+url="http://kokkinizita.linuxaudio.org/linuxaudio/aeolus/"
+license=('GPL3')
+depends=('clthreads' 'clxclient' 'jack' 'zita-alsa-pcmi')
+source=(${url}../downloads/{$pkgname-$pkgver,stops-$_stopver}.tar.bz2 $pkgname.conf)
+md5sums=('6ae707e441f6d17eaabfde91c889bce2'
+ '2a7b1cae820408fa1cc655800d08d88f'
+ 'b9cbca97ac4184f0b207faf4f58f72a9')
+
+prepare() {
+ cd "$pkgname-$pkgver/source"
+ # strip ldconfig and -march=native
+ sed -i '/ldconfig\|-march=native/d' Makefile
+}
+
+build() {
+ cd "$pkgname-$pkgver/source"
+ make PREFIX=/usr LIBDIR=lib
+}
+
+package(){
+ cd "$pkgname-$pkgver/source"
+ make DESTDIR="$pkgdir/" PREFIX=/usr LIBDIR=lib install
+
+ # system config file
+ install -Dm644 "$srcdir/$pkgname.conf" "$pkgdir/etc/$pkgname.conf"
+
+ # stops
+ cd "$srcdir/stops-$_stopver"
+ find . -name definition -exec install -Dm644 {} ${pkgdir}/usr/share/$pkgname/stops/{} \;
+ find . -name presets -exec install -Dm644 {} ${pkgdir}/usr/share/$pkgname/stops/{} \;
+ find . -name '*.ae0' -exec install -Dm644 {} ${pkgdir}/usr/share/$pkgname/stops \;
+}
diff --git a/community/aeolus/aeolus.conf b/community/aeolus/aeolus.conf
new file mode 100644
index 000000000..1c776229e
--- /dev/null
+++ b/community/aeolus/aeolus.conf
@@ -0,0 +1,3 @@
+# Aeolus system wide default options
+# use ~/.aeolusrc for local options
+-u -S /usr/share/aeolus/stops
diff --git a/community/amb-plugins/PKGBUILD b/community/amb-plugins/PKGBUILD
new file mode 100644
index 000000000..683da8012
--- /dev/null
+++ b/community/amb-plugins/PKGBUILD
@@ -0,0 +1,27 @@
+# $Id: PKGBUILD 95481 2013-08-13 03:10:48Z speps $
+# Maintainer : speps <speps at aur dot archlinux dot org>
+
+pkgname=amb-plugins
+pkgver=0.8.1
+pkgrel=1
+pkgdesc="A set of LADSPA ambisonics plugins"
+arch=('i686' 'x86_64')
+url="http://kokkinizita.linuxaudio.org/linuxaudio/ladspa/"
+license=('GPL')
+groups=('ladspa-plugins')
+depends=('ladspa')
+source=("${url}../downloads/AMB-plugins-$pkgver.tar.bz2")
+md5sums=('496d8d2bf6036611b6b4aa7f56325a52')
+
+build() {
+ cd "$srcdir/AMB-plugins-$pkgver"
+ make
+}
+
+package() {
+ cd "$srcdir/AMB-plugins-$pkgver"
+
+ # plugins
+ install -d "$pkgdir/usr/lib/ladspa"
+ install -Dm755 *.so "$pkgdir/usr/lib/ladspa"
+}
diff --git a/community/ams/PKGBUILD b/community/ams/PKGBUILD
new file mode 100644
index 000000000..adf50a8a2
--- /dev/null
+++ b/community/ams/PKGBUILD
@@ -0,0 +1,60 @@
+# $Id: PKGBUILD 95513 2013-08-13 04:13:57Z speps $
+# Maintainer : speps <speps at aur dot archlinux dot org>
+
+_name=alsamodular
+pkgname=ams
+pkgver=2.0.1
+pkgrel=1
+pkgdesc="A realtime modular synthesizer and effect processor"
+arch=('i686' 'x86_64')
+url="http://alsamodular.sourceforge.net/"
+license=('GPL')
+depends=('qt4' 'clalsadrv' 'ladspa' 'jack')
+makedepends=('fftw')
+optdepends=('amb-plugins: ambisonic plugins'
+ 'mcp-plugins: phaser, chorus and moog vcf plugins'
+ 'rev-plugins: 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'
+ '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/$_name/$_name/$pkgver/$pkgname-$pkgver.tar.bz2"
+ "$pkgname.desktop" "$pkgname.png")
+md5sums=('0d41bd5aac066aa98be45fd7ab12d35f'
+ 'ffa277cffd52254f0297cbc2f200767e'
+ '0349171d5431f1c6e56085f080eb8c68')
+
+prepare() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ # strip unwanted flags
+ sed -i 's/-m\(64\|arch=[a-z1-9]*\) *//' configure
+
+ # DSO link flag
+ export LIBS=" -ldl"
+}
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "$srcdir/$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"
+}
diff --git a/community/ams/ams.desktop b/community/ams/ams.desktop
new file mode 100644
index 000000000..4761ab9fc
--- /dev/null
+++ b/community/ams/ams.desktop
@@ -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
diff --git a/community/qupzilla/qupzilla.install b/community/ams/ams.install
index 029294d67..e111ef946 100644
--- a/community/qupzilla/qupzilla.install
+++ b/community/ams/ams.install
@@ -1,5 +1,4 @@
post_install() {
- xdg-icon-resource forceupdate --theme hicolor 2> /dev/null
update-desktop-database -q
}
diff --git a/community/ams/ams.png b/community/ams/ams.png
new file mode 100644
index 000000000..d3a8dfe49
--- /dev/null
+++ b/community/ams/ams.png
Binary files differ
diff --git a/community/blop/PKGBUILD b/community/blop/PKGBUILD
new file mode 100644
index 000000000..31632fc53
--- /dev/null
+++ b/community/blop/PKGBUILD
@@ -0,0 +1,25 @@
+# $Id: PKGBUILD 95483 2013-08-13 03:13:24Z speps $
+# Maintainer : speps <speps at aur dot archlinux dot org>
+
+pkgname=blop
+pkgver=0.2.8
+pkgrel=1
+pkgdesc="Bandlimited LADSPA Oscillator Plugins"
+arch=('i686' 'x86_64')
+url="http://blop.sourceforge.net/"
+license=('GPL')
+depends=('ladspa')
+groups=('ladspa-plugins')
+source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz")
+md5sums=('4baedbf1e7cacc7d1034c4bcd5556d6f')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ ./configure --prefix=/usr
+ make
+}
+
+package(){
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="$pkgdir/" install
+}
diff --git a/community/caps/PKGBUILD b/community/caps/PKGBUILD
new file mode 100644
index 000000000..9ee7e291e
--- /dev/null
+++ b/community/caps/PKGBUILD
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer : speps <speps at aur dot archlinux dot org>
+# Contributor: DonVla <donvla@users.sourceforge.net>
+
+pkgname=caps
+pkgver=0.9.8
+pkgrel=1
+pkgdesc="The LADSPA C* Audio Plugin Suite"
+arch=('i686' 'x86_64')
+url="http://quitte.de/dsp/caps.html"
+license=('GPL3')
+groups=('ladspa-plugins')
+depends=('ladspa')
+source=("http://quitte.de/dsp/caps_$pkgver.tar.bz2")
+md5sums=('e3bfcb4c53670dcc3c8ba3ce3639d002')
+
+prepare() {
+ cd "$srcdir/$pkgname-$pkgver"
+ # use a minimum of optimization required to build
+ export _CFLAGS='-msse -mfpmath=sse'
+}
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make PREFIX="$pkgdir/usr" install
+}
diff --git a/community/clalsadrv/PKGBUILD b/community/clalsadrv/PKGBUILD
new file mode 100644
index 000000000..614845421
--- /dev/null
+++ b/community/clalsadrv/PKGBUILD
@@ -0,0 +1,46 @@
+# $Id: PKGBUILD 95507 2013-08-13 03:42:10Z speps $
+# Maintainer : speps <speps at aur dot archlinux dot org>
+
+pkgname=clalsadrv
+pkgver=2.0.0
+pkgrel=1
+pkgdesc="C++ wrapper around the ALSA API"
+arch=('i686' 'x86_64')
+url="http://kokkinizita.linuxaudio.org/linuxaudio/"
+license=('GPL')
+depends=('clthreads' 'alsa-lib')
+source=("${url}downloads/$pkgname-$pkgver.tar.bz2")
+md5sums=('be123e1701e4b6c6300907df949bd71c')
+
+prepare() {
+ cd "$pkgname-$pkgver/libs"
+
+ # use ldconfig locally
+ sed -i 's/ldconfig /&-N $(DESTDIR)/' Makefile
+}
+
+build() {
+ cd "$pkgname-$pkgver/libs"
+
+ # libs
+ make
+
+ # create lib link for building apps
+ ln -sf lib$pkgname.so.$pkgver lib$pkgname.so
+
+ # apps
+ cd ../apps
+ CXXFLAGS+=" -I../libs" \
+ LDFLAGS+=" -L../libs -lasound" \
+ make PREFIX=/usr
+}
+
+package(){
+ cd "$pkgname-$pkgver"
+
+ # libs
+ make -C libs DESTDIR="$pkgdir/" PREFIX=/usr LIBDIR=lib install
+
+ # apps
+ make -C apps DESTDIR="$pkgdir/" PREFIX=/usr LIBDIR=lib install
+}
diff --git a/community/clthreads/PKGBUILD b/community/clthreads/PKGBUILD
new file mode 100644
index 000000000..3504dd62b
--- /dev/null
+++ b/community/clthreads/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id: PKGBUILD 95501 2013-08-13 03:29:13Z speps $
+# Maintainer : speps <speps at aur dot archlinux dot org>
+# Contributor: Christoph Zeiler <rabyte*gmail>
+# Contributor: Tom K <tomk@runbox.com>
+# Contributor: Shinlun Hsieh <yngwiexx@yahoo.com.tw>
+# Contributor: Philipp Überbacher <murks at lavabit dot com>
+
+pkgname=clthreads
+pkgver=2.4.0
+pkgrel=1
+pkgdesc="C++ wrapper library around the POSIX threads API"
+arch=('i686' 'x86_64')
+url="http://kokkinizita.linuxaudio.org/linuxaudio/"
+license=('LGPL')
+depends=('gcc-libs')
+source=("${url}downloads/$pkgname-$pkgver.tar.bz2")
+md5sums=('90b650f1f5c9f39f4d77f73aca3c53be')
+
+build() {
+ cd "$pkgname-$pkgver"
+ make
+}
+
+package(){
+ cd "$pkgname-$pkgver"
+ install -d "$pkgdir/usr/include"
+ make PREFIX="$pkgdir/usr" LIBDIR=lib install
+}
diff --git a/community/clxclient/PKGBUILD b/community/clxclient/PKGBUILD
new file mode 100644
index 000000000..80da7b223
--- /dev/null
+++ b/community/clxclient/PKGBUILD
@@ -0,0 +1,36 @@
+# $Id: PKGBUILD 95505 2013-08-13 03:39:58Z speps $
+# Maintainer : speps <speps at aur dot archlinux dot org>
+# Contributor: Christoph Zeiler <rabyte*gmail>
+# Contributor: Tom K <tomk@runbox.com>
+# Contributor: Shinlun Hsieh <yngwiexx@yahoo.com.tw>
+# Contributor: Philipp Überbacher <murks at lavabit dot com>
+
+pkgname=clxclient
+pkgver=3.9.0
+pkgrel=1
+pkgdesc="C++ wrapper library around the X Window System API"
+arch=('i686' 'x86_64')
+url="http://kokkinizita.linuxaudio.org/linuxaudio/"
+license=('LGPL')
+depends=('gcc-libs' 'libxft')
+makedepends=('clthreads')
+source=("${url}downloads/$pkgname-$pkgver.tar.bz2")
+md5sums=('bd6df73f688c9be1b3afef58283d7ef5')
+
+prepare() {
+ cd "$pkgname-$pkgver"
+ # call ldconfig locally
+ sed -i 's/ldconfig/& -N $(DESTDIR)$(PREFIX)\/$(LIBDIR)/' Makefile
+}
+
+build() {
+ cd "$pkgname-$pkgver"
+ make PREFIX="$pkgdir/usr" LIBDIR=lib
+}
+
+package(){
+ cd "$pkgname-$pkgver"
+ install -d "$pkgdir/usr/include"
+ make PREFIX="$pkgdir/usr" LIBDIR=lib install
+}
+
diff --git a/community/fil-plugins/PKGBUILD b/community/fil-plugins/PKGBUILD
new file mode 100644
index 000000000..a893ecea8
--- /dev/null
+++ b/community/fil-plugins/PKGBUILD
@@ -0,0 +1,27 @@
+# $Id: PKGBUILD 95487 2013-08-13 03:17:34Z speps $
+# Maintainer : speps <speps at aur dot archlinux dot org>
+
+pkgname=fil-plugins
+pkgver=0.3.0
+pkgrel=1
+pkgdesc="LADSPA four-band parametric equaliser plugins"
+arch=('i686' 'x86_64')
+url="http://kokkinizita.linuxaudio.org/linuxaudio/ladspa/"
+license=('GPL')
+groups=('ladspa-plugins')
+depends=('ladspa')
+source=("${url}../downloads/FIL-plugins-$pkgver.tar.bz2")
+md5sums=('39f34be516752a9740a65547e1128124')
+
+build() {
+ cd "$srcdir/FIL-plugins-$pkgver"
+ make
+}
+
+package() {
+ cd "$srcdir/FIL-plugins-$pkgver"
+
+ # plugin
+ install -Dm755 filters.so \
+ "$pkgdir/usr/lib/ladspa/filters.so"
+}
diff --git a/community/go/PKGBUILD b/community/go/PKGBUILD
index 555b74b03..95e355016 100644
--- a/community/go/PKGBUILD
+++ b/community/go/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 92767 2013-06-14 21:32:00Z arodseth $
+# $Id: PKGBUILD 95534 2013-08-13 13:02:46Z arodseth $
# Maintainer: Vesa Kaihlavirta <vegai@iki.fi>
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Rémy Oudompheng <remy@archlinux.org>
@@ -8,10 +8,10 @@
# Contributor: Mike Rosset <mike.rosset@gmail.com>
# Contributor: Daniel YC Lin <dlin.tw@gmail.com>
-# TODO: Create split packages for the crosscompilation versions? (maybe)
+# TODO: Create split packages for the crosscompilation versions. Maybe.
pkgname=go
-pkgver=1.1.1
+pkgver=1.1.2
pkgrel=1
epoch=2
pkgdesc='Compiler and tools for the Go programming language from Google'
@@ -24,17 +24,17 @@ options=('!strip')
install="$pkgname.install"
backup=('usr/lib/go/bin')
-if [ "$CARCH" == 'x86_64' ]; then
- source=("http://go.googlecode.com/files/${pkgname}$pkgver.linux-amd64.tar.gz"
- "$pkgname.sh")
- sha256sums=('71ff6e7bfd8f59a12f2fc7b7abf5d006fad24664e11e39bec61c2ac84d2e573f'
- 'a03db71d323ed2794123bb31b5c8ad5febd551c490b5c0b341052c8e5f0ba892')
-else
+#if [ "$CARCH" == 'x86_64' ]; then
+# source=("http://go.googlecode.com/files/${pkgname}$pkgver.linux-amd64.tar.gz"
+# "$pkgname.sh")
+# sha256sums=('ad583ff91bd2955fc48d24001785587e3c3b5ce5c09e4971a37028db4c3f6a98'
+# '36202a833faeb8ea10760557a1e221025288480bdeebf776c8b610014aadc181')
+#else
source=("http://go.googlecode.com/files/${pkgname}$pkgver.linux-386.tar.gz"
"$pkgname.sh")
- sha256sums=('fabb01f1b6a048280f4235c6d9be1cd7ed27a653ca0e011c393af23e40b54450'
- 'a03db71d323ed2794123bb31b5c8ad5febd551c490b5c0b341052c8e5f0ba892')
-fi
+ sha256sums=('56f384c973e58c098ec462bcd892a7c1166b9a392461970ddb22d57ed4d495af'
+ '36202a833faeb8ea10760557a1e221025288480bdeebf776c8b610014aadc181')
+#fi
build() {
cd "$srcdir/$pkgname/src"
diff --git a/community/go/go.sh b/community/go/go.sh
index a0109ba97..51c6e7677 100644
--- a/community/go/go.sh
+++ b/community/go/go.sh
@@ -1 +1,2 @@
export GOPATH=/usr/lib/go/site
+export GOROOT=/usr/lib/go
diff --git a/community/mcp-plugins/PKGBUILD b/community/mcp-plugins/PKGBUILD
new file mode 100644
index 000000000..95f979a4d
--- /dev/null
+++ b/community/mcp-plugins/PKGBUILD
@@ -0,0 +1,27 @@
+# $Id: PKGBUILD 95489 2013-08-13 03:19:04Z speps $
+# Maintainer : speps <speps at aur dot archlinux dot org>
+
+pkgname=mcp-plugins
+pkgver=0.4.0
+pkgrel=1
+pkgdesc="A set of LADSPA filters plugins"
+arch=('i686' 'x86_64')
+url="http://kokkinizita.linuxaudio.org/linuxaudio/ladspa/"
+license=('GPL')
+groups=('ladspa-plugins')
+depends=('ladspa')
+source=("${url}../downloads/MCP-plugins-$pkgver.tar.bz2")
+md5sums=('2a0fc50281a150eb781dbcfe2fb9c532')
+
+build() {
+ cd "$srcdir/MCP-plugins-$pkgver"
+ make
+}
+
+package() {
+ cd "$srcdir/MCP-plugins-$pkgver"
+
+ # plugins
+ install -d "$pkgdir/usr/lib/ladspa"
+ install -Dm755 *.so "$pkgdir/usr/lib/ladspa"
+}
diff --git a/community/proxychains/PKGBUILD b/community/proxychains/PKGBUILD
new file mode 100644
index 000000000..4237a830b
--- /dev/null
+++ b/community/proxychains/PKGBUILD
@@ -0,0 +1,34 @@
+# $Id: PKGBUILD 95519 2013-08-13 06:25:46Z fyan $
+# Maintainer: Felix Yan <felixonmars@gmail.com>
+# Contributor: Michael Düll <mail@akurei.me> PGP-Key: AAAEE882
+# Contributor: Dan Serban
+# Contributor: Niklas Schmuecker (IRC: nisc) <nschmuecker (gmail)>
+
+pkgname=proxychains
+pkgver=3.1
+pkgrel=6
+pkgdesc='A program proxifier: Runs programs from behind a proxy server, similar to tsocks. TCP & DNS tunneling. HTTP, SOCKS4 & SOCKS5.'
+url='http://proxychains.sourceforge.net/'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dnsutils')
+options=('!libtool')
+backup=('etc/proxychains.conf')
+source=("http://downloads.sourceforge.net/sourceforge/proxychains/proxychains-${pkgver}.tar.gz")
+
+build() {
+ cd proxychains-${pkgver}
+ sed -i 's/servlen, unsigned int/servlen, int/' proxychains/libproxychains.c
+# sed -i 's#export LD_PRELOAD=libproxychains.so#export LD_PRELOAD=/usr/lib/libproxychains.so#' proxychains/proxychains
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd proxychains-${pkgver}
+ make DESTDIR="${pkgdir}" install
+ cd "${pkgdir}"
+ mv usr/etc .
+}
+
+sha512sums=('7ec7be851d956070fe28bdd3bd7c1a7dc442c054e6487868672ba27490c9b0b6aaa061504c9e1933feccb40ca1996123d202df449eac4251d9582a0ba73c7061')
diff --git a/community/pvoc/PKGBUILD b/community/pvoc/PKGBUILD
new file mode 100644
index 000000000..702924d53
--- /dev/null
+++ b/community/pvoc/PKGBUILD
@@ -0,0 +1,27 @@
+# $Id: PKGBUILD 95491 2013-08-13 03:21:30Z speps $
+# Maintainer : speps <speps at aur dot archlinux dot org>
+
+pkgname=pvoc
+pkgver=0.1.12
+pkgrel=1
+pkgdesc="LADSPLA plugins and a tool for time compression/expansion using phase-vocoding"
+arch=('i686' 'x86_64')
+url="http://quitte.de/dsp/pvoc.html"
+license=('GPL')
+groups=('ladspa-plugins')
+depends=('ladspa' 'fftw' 'libsndfile')
+source=("http://quitte.de/dsp/pvoc_$pkgver.tar.gz")
+md5sums=('6171b97e0d8aa5545c780d4f8dc15167')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make PREFIX=/usr
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make PREFIX="$pkgdir/usr" \
+ MAN1DEST="$pkgdir/usr/share/man/man1" install
+}
+
+# vim:set ts=2 sw=2 et:
diff --git a/community/qupzilla/PKGBUILD b/community/qupzilla/PKGBUILD
deleted file mode 100644
index cf32eb72e..000000000
--- a/community/qupzilla/PKGBUILD
+++ /dev/null
@@ -1,37 +0,0 @@
-# $Id: PKGBUILD 90359 2013-05-11 23:23:44Z speps $
-# Maintainer: speps <speps at aur dot archlinux dot org>
-
-_name=QupZilla
-pkgname=qupzilla
-pkgver=1.4.3
-pkgrel=1
-pkgdesc="Cross-platform QtWebKit browser"
-arch=(i686 x86_64)
-url="http://www.qupzilla.com/"
-license=('GPL3')
-depends=('qtwebkit' 'hunspell')
-optdepends=('bash-completion: bash completion support')
-install="$pkgname.install"
-source=("$pkgname-$pkgver.tar.gz::https://github.com/$_name/$pkgname/tarball/v$pkgver")
-md5sums=('20187fcce11dbba876e1ee7dc5e32583')
-
-build() {
- cd "$srcdir/$_name-$pkgname-"*
-
- # enable webgl support
- export USE_WEBGL=true
-
- qmake-qt4 QUPZILLA_PREFIX=/usr/
- make
-}
-
-package() {
- cd "$srcdir/$_name-$pkgname-"*
- make INSTALL_ROOT="$pkgdir/" install
-
- # zsh completion
- install -Dm644 linux/completion/zsh_completion.sh \
- "$pkgdir/usr/share/zsh/site-functions/_$pkgname"
-}
-
-# vim:set ts=2 sw=2 et:
diff --git a/community/rev-plugins/PKGBUILD b/community/rev-plugins/PKGBUILD
new file mode 100644
index 000000000..83d6ee649
--- /dev/null
+++ b/community/rev-plugins/PKGBUILD
@@ -0,0 +1,27 @@
+# $Id: PKGBUILD 95493 2013-08-13 03:23:10Z speps $
+# Maintainer : speps <speps at aur dot archlinux dot org>
+
+pkgname=rev-plugins
+pkgver=0.3.1
+pkgrel=1
+pkgdesc="LADSPA stereo reverb plugin based on greverb"
+arch=('i686' 'x86_64')
+url="http://kokkinizita.linuxaudio.org/linuxaudio/ladspa/"
+license=('GPL')
+groups=('ladspa-plugins')
+depends=('ladspa')
+source=("${url}../downloads/REV-plugins-$pkgver.tar.bz2")
+md5sums=('bca920c2cbf5e33989e7cafab6fbaee4')
+
+build() {
+ cd "$srcdir/REV-plugins-$pkgver"
+ make
+}
+
+package() {
+ cd "$srcdir/REV-plugins-$pkgver"
+
+ # plugin
+ install -Dm 755 g2reverb.so \
+ "$pkgdir/usr/lib/ladspa/g2reverb.so"
+}
diff --git a/community/tap-plugins/PKGBUILD b/community/tap-plugins/PKGBUILD
new file mode 100644
index 000000000..8ab3c5150
--- /dev/null
+++ b/community/tap-plugins/PKGBUILD
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 95495 2013-08-13 03:24:48Z speps $
+# Maintainer : speps <speps at aur dot archlinux dot org>
+# Contributor: Ng Oon-Ee <ngoonee.talk@gmail.com>
+
+pkgname=tap-plugins
+pkgver=0.7.2
+pkgrel=1
+pkgdesc="Tom's LADSPA Plugins"
+arch=('i686' 'x86_64')
+url="http://tap-plugins.sourceforge.net/"
+license=('GPL')
+groups=('ladspa-plugins')
+depends=('ladspa')
+source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz")
+md5sums=('354b171e580cfad6bad87c26a79ef273')
+
+prepare() {
+ cd "$srcdir/$pkgname-$pkgver"
+ # correct install path
+ sed 's|/usr/local/|$(DESTDIR)/usr/|' -i Makefile
+}
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="$pkgdir/" install
+}
diff --git a/community/tig/PKGBUILD b/community/tig/PKGBUILD
index bfb561b9c..ccba8c33b 100644
--- a/community/tig/PKGBUILD
+++ b/community/tig/PKGBUILD
@@ -4,7 +4,7 @@
# Contributor: Nathan Jones <nathanj@insightbb.com>
pkgname=tig
-pkgver=1.1
+pkgver=1.2
pkgrel=1
pkgdesc='Text-mode interface for Git.'
depends=('git' 'ncurses')
@@ -12,7 +12,7 @@ url='http://jonas.nitro.dk/tig/'
license=('GPL')
arch=('i686' 'x86_64')
source=("http://jonas.nitro.dk/${pkgname}/releases/${pkgname}-${pkgver}.tar.gz")
-md5sums=('adeb797a8320962eeb345a615257cbac')
+md5sums=('9821525564aa3f4aa51ad2b6c11b3a91')
build() {
cd "$srcdir/$pkgname-$pkgver"
diff --git a/community/vco-plugins/PKGBUILD b/community/vco-plugins/PKGBUILD
new file mode 100644
index 000000000..23df80ddb
--- /dev/null
+++ b/community/vco-plugins/PKGBUILD
@@ -0,0 +1,27 @@
+# $Id: PKGBUILD 95497 2013-08-13 03:26:22Z speps $
+# Maintainer : speps <speps at aur dot archlinux dot org>
+
+pkgname=vco-plugins
+pkgver=0.3.0
+pkgrel=1
+pkgdesc="LADSPA anti-aliased oscillator plugins"
+arch=('i686' 'x86_64')
+url="http://kokkinizita.linuxaudio.org/linuxaudio/ladspa/"
+license=('GPL')
+groups=('ladspa-plugins')
+depends=('ladspa')
+source=("${url}../downloads/VCO-plugins-$pkgver.tar.bz2")
+md5sums=('6fdf4a7e3c716abbb89721645427cd52')
+
+build() {
+ cd "$srcdir/VCO-plugins-$pkgver"
+ make
+}
+
+package() {
+ cd "$srcdir/VCO-plugins-$pkgver"
+
+ # plugin
+ install -Dm755 blvco.so "$pkgdir/usr/lib/ladspa/blvco.so"
+ ln -s blvco.so "$pkgdir/usr/lib/ladspa/vco_sawpulse.so"
+}
diff --git a/community/virtualbox-modules/PKGBUILD b/community/virtualbox-modules/PKGBUILD
index cc8295555..509a0bf14 100644
--- a/community/virtualbox-modules/PKGBUILD
+++ b/community/virtualbox-modules/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 95204 2013-08-06 14:56:23Z tpowa $
+# $Id: PKGBUILD 95527 2013-08-13 10:04:46Z tpowa $
# Maintainer: Ionut Biru <ibiru@archlinux.org>
# Maintainer: Sébastien Luttringer
pkgbase=virtualbox-modules
pkgname=('virtualbox-host-modules' 'virtualbox-guest-modules')
pkgver=4.2.16
-pkgrel=5
+pkgrel=6
arch=('i686' 'x86_64')
url='http://virtualbox.org'
license=('GPL')
diff --git a/community/wah-plugins/PKGBUILD b/community/wah-plugins/PKGBUILD
new file mode 100644
index 000000000..3cf3fcb9c
--- /dev/null
+++ b/community/wah-plugins/PKGBUILD
@@ -0,0 +1,30 @@
+# $Id: PKGBUILD 95499 2013-08-13 03:27:45Z speps $
+# Maintainer : speps <speps at aur dot archlinux dot org>
+# Contributor: Renato Budinich <rennabh at gmail dot com>
+
+pkgname=wah-plugins
+pkgver=0.0.2
+pkgrel=1
+pkgdesc="LADSPA Wah filter plugin"
+arch=('i686' 'x86_64')
+url="http://kokkinizita.linuxaudio.org/linuxaudio/ladspa/"
+license=('GPL')
+groups=('ladspa-plugins')
+depends=('ladspa')
+source=("${url}../downloads/WAH-plugins-$pkgver.tar.bz2")
+md5sums=('e203e3458a4cd75cc442d70b8f124db9')
+
+build() {
+ cd "$srcdir/WAH-plugins-$pkgver"
+ make
+}
+
+package() {
+ cd "$srcdir/WAH-plugins-$pkgver"
+
+ # plugin
+ install -Dm755 autowah.so \
+ "$pkgdir/usr/lib/ladspa/autowah.so"
+}
+
+# vim:set ts=2 sw=2 et:
diff --git a/community/zita-alsa-pcmi/PKGBUILD b/community/zita-alsa-pcmi/PKGBUILD
new file mode 100644
index 000000000..187be8e11
--- /dev/null
+++ b/community/zita-alsa-pcmi/PKGBUILD
@@ -0,0 +1,47 @@
+# $Id: PKGBUILD 95509 2013-08-13 03:43:50Z speps $
+# Maintainer: speps <speps at aur dot archlinux dot org>
+
+pkgname=zita-alsa-pcmi
+pkgver=0.2.0
+pkgrel=1
+pkgdesc="The successor of clalsadrv, provides easy access to ALSA PCM devices."
+arch=(i686 x86_64)
+url="http://kokkinizita.linuxaudio.org/linuxaudio/"
+license=('GPL3')
+depends=('gcc-libs' 'alsa-lib')
+source=("${url}downloads/$pkgname-$pkgver.tar.bz2")
+md5sums=('0ba4d59abce231056e2628d081124114')
+
+prepare() {
+ cd "$srcdir/$pkgname-$pkgver/libs"
+ # call ldconfig locally
+ sed -i 's/ldconfig/& -N $(DESTDIR)$(PREFIX)\/$(LIBDIR)/' Makefile
+}
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver/libs"
+
+ # libs
+ make PREFIX=/usr
+
+ # create lib link for building apps
+ ln -s lib$pkgname.so.$pkgver lib$pkgname.so
+
+ # apps
+ cd ../apps
+ CXXFLAGS+=" -I../libs" \
+ LDFLAGS+=" -L../libs" \
+ make PREFIX=/usr
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ # libs
+ make -C libs DESTDIR="$pkgdir/" PREFIX=/usr LIBDIR=lib install
+
+ # apps
+ make -C apps DESTDIR="$pkgdir/" PREFIX=/usr LIBDIR=lib install
+}
+
+# vim:set ts=2 sw=2 et: