summaryrefslogtreecommitdiff
path: root/community/raul/PKGBUILD
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2012-03-22 12:02:54 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2012-03-22 12:02:54 -0300
commitaa49e201b1464851bcebcd821592a2fceeaddcbc (patch)
tree40708e916d04d7929b2bc2a8c17c796fb91dec8e /community/raul/PKGBUILD
parente555324330bef021c747085c7499fd843ed20f47 (diff)
parent39e662ccfbe62ae77d458159d192816171a22f43 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/agave/PKGBUILD community/raul/PKGBUILD gnome-unstable/at-spi2-atk/PKGBUILD gnome-unstable/at-spi2-core/PKGBUILD gnome-unstable/atk/PKGBUILD gnome-unstable/cheese/PKGBUILD gnome-unstable/cogl/PKGBUILD gnome-unstable/empathy/PKGBUILD gnome-unstable/eog/PKGBUILD gnome-unstable/gdk-pixbuf2/PKGBUILD gnome-unstable/gedit/PKGBUILD gnome-unstable/glib-networking/PKGBUILD gnome-unstable/gnome-bluetooth/PKGBUILD gnome-unstable/gnome-documents/PKGBUILD gnome-unstable/gnome-documents/gnome-documents.install gnome-unstable/gnome-shell/PKGBUILD gnome-unstable/gnome-system-monitor/PKGBUILD gnome-unstable/gnome-system-monitor/gnome-system-monitor.install gnome-unstable/gnome-themes-standard/PKGBUILD gnome-unstable/gtk3/PKGBUILD gnome-unstable/gtksourceview3/PKGBUILD gnome-unstable/libsoup/PKGBUILD gnome-unstable/libwebkit/PKGBUILD gnome-unstable/metacity/PKGBUILD gnome-unstable/mutter/PKGBUILD gnome-unstable/nautilus/PKGBUILD gnome-unstable/sushi/PKGBUILD gnome-unstable/telepathy-farstream/PKGBUILD multilib/lib32-libdrm/PKGBUILD multilib/lib32-libdrm/no-pthread-stubs.patch testing/iproute2/PKGBUILD testing/openssh/PKGBUILD
Diffstat (limited to 'community/raul/PKGBUILD')
-rw-r--r--community/raul/PKGBUILD24
1 files changed, 13 insertions, 11 deletions
diff --git a/community/raul/PKGBUILD b/community/raul/PKGBUILD
index ed4bade48..7f015fc87 100644
--- a/community/raul/PKGBUILD
+++ b/community/raul/PKGBUILD
@@ -1,32 +1,34 @@
-# $Id: PKGBUILD 68139 2012-03-18 16:41:01Z schiv $
+# $Id: PKGBUILD 68252 2012-03-20 16:47:35Z giovanni $
# Maintainer: Ray Rashif <schiv@archlinux.org>
# Contributor: Max a.k.a. Synthead <synthead@gmail.com>
# Contributor: christhemonkey <christhemonkey at gmail dot com>
pkgname=raul
pkgver=0.8.0
-pkgrel=2
+pkgrel=3
pkgdesc="C++ Realtime Audio Utility Library"
-arch=(i686 x86_64 'mips64el')
+arch=('i686' 'x86_64' 'mips64el')
url="http://drobilla.net/software/raul/"
depends=('glib2')
makedepends=('boost' 'python2')
license=('GPL')
-install=$pkgname.install
-source=(http://download.drobilla.net/$pkgname-$pkgver.tar.bz2)
-md5sums=('8fa71a20db81fbed5fb6516dea383ea8')
+options=('!makeflags')
+source=("http://download.drobilla.net/$pkgname-$pkgver.tar.bz2"
+ 'raul-0.8.0-ldconfig.patch')
+md5sums=('8fa71a20db81fbed5fb6516dea383ea8'
+ 'e86cee755a503d25d37fb2bcaaf48a9b')
build() {
- cd "$srcdir/$pkgname-$pkgver"
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ patch -Np1 -i "${srcdir}/raul-0.8.0-ldconfig.patch"
python2 waf configure --prefix=/usr
python2 waf build $MAKEFLAGS
}
package() {
- cd "$srcdir/$pkgname-$pkgver"
+ cd "${srcdir}/${pkgname}-${pkgver}"
- python2 waf install --destdir="$pkgdir"
+ python2 waf install --destdir="${pkgdir}"
}
-
-# vim:set ts=2 sw=2 et: