From dd7d49a59d8104c84ecf800f39d70b64fcd3543d Mon Sep 17 00:00:00 2001 From: Guest One Date: Sat, 25 May 2013 23:27:03 +0200 Subject: added new package nekobee 0.1.8-1 --- pcr/nekobee/PKGBUILD | 23 +++++++++++++++++++++++ pcr/nekobee/nekobee.patch | 20 ++++++++++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 pcr/nekobee/PKGBUILD create mode 100644 pcr/nekobee/nekobee.patch diff --git a/pcr/nekobee/PKGBUILD b/pcr/nekobee/PKGBUILD new file mode 100644 index 000000000..164b50ac9 --- /dev/null +++ b/pcr/nekobee/PKGBUILD @@ -0,0 +1,23 @@ +# Maintainer: Guest One + +pkgname=nekobee +pkgver=0.1.8 +pkgrel=1 +pkgdesc="A TB303-style synthesizer for DSSI" +url="https://github.com/gordonjcp/nekobee" +depends=('liblo' 'gtk2') +makedepends=('dssi' 'python' 'ladspa') +arch=('i686') +license=('GPL') +source=("https://github.com/gordonjcp/${pkgname}/archive/${pkgver}.tar.gz" + "nekobee.patch") +md5sums=('5954ac49043bc80588be72a9b9a9b28f' + '8dde87ad9b2a8500c51d773b25b7984f') + +build() { +cd $startdir/src/$pkgname-$pkgver +patch -p1 -i $srcdir/$pkgname.patch +./waf configure --prefix=/usr +./waf +DESTDIR=$startdir/pkg ./waf install +} diff --git a/pcr/nekobee/nekobee.patch b/pcr/nekobee/nekobee.patch new file mode 100644 index 000000000..dd995c357 --- /dev/null +++ b/pcr/nekobee/nekobee.patch @@ -0,0 +1,20 @@ +diff -aur nekobee-0.1.8/wscript nekobee-0.1.8.new/wscript +--- nekobee-0.1.8/wscript 2010-09-12 21:34:13.000000000 +0200 ++++ nekobee-0.1.8.new/wscript 2013-05-25 22:47:23.923441000 +0200 +@@ -31,7 +31,7 @@ + # DSSI plugin + plugin_dssi = bld.new_task_gen('cc', 'shlib') + plugin_dssi.env['shlib_PATTERN'] = '%s.so' +- plugin_dssi.env.append_value("LINKFLAGS", "-module -avoid-version -Wc,-nostartfiles") ++ plugin_dssi.env.append_value("LINKFLAGS", "-lm") + plugin_dssi.includes = ['.', 'src'] + plugin_dssi.defines = 'HAVE_CONFIG_H' + plugin_dssi.source = [ +@@ -49,6 +49,7 @@ + + # DSSI UI executable + gui_gtk = bld.new_task_gen('cc', 'program') ++ gui_gtk.env.append_value("LINKFLAGS", "-lm") + gui_gtk.includes = ['.', 'src'] + gui_gtk.defines = 'HAVE_CONFIG_H' + gui_gtk.source = [ -- cgit v1.2.3 From 12ceefcc79ff464879f52a237368df3a2559d945 Mon Sep 17 00:00:00 2001 From: Márcio Alexandre Silva Delgado Date: Sat, 25 May 2013 19:04:59 -0300 Subject: ha-pacemaker: fixing pkg --- pcr/ha-pacemaker/PKGBUILD | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pcr/ha-pacemaker/PKGBUILD b/pcr/ha-pacemaker/PKGBUILD index 64132b521..2cd0be84c 100644 --- a/pcr/ha-pacemaker/PKGBUILD +++ b/pcr/ha-pacemaker/PKGBUILD @@ -3,7 +3,7 @@ pkgname=ha-pacemaker _pkgname=${pkgname:3} pkgver=1.1.9 -pkgrel=2 +pkgrel=3 pkgdesc='Cluster resource manager' arch=( i686 @@ -78,4 +78,6 @@ build() { package() { cd $srcdir/$_pkgname-${_pkgname^}-$pkgver setarch $CARCH make DESTDIR=$pkgdir install + + mv $pkgdir/usr/sbin/cibsecret{,-pacemaker} } -- cgit v1.2.3 From e1a72973b50bf1aa4e66b2a62fd05cbe12ea7880 Mon Sep 17 00:00:00 2001 From: Guest One Date: Sun, 26 May 2013 00:23:32 +0200 Subject: updated nekobee, fixed PKGBUILD --- pcr/nekobee/PKGBUILD | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pcr/nekobee/PKGBUILD b/pcr/nekobee/PKGBUILD index 164b50ac9..4e71ae93d 100644 --- a/pcr/nekobee/PKGBUILD +++ b/pcr/nekobee/PKGBUILD @@ -2,7 +2,7 @@ pkgname=nekobee pkgver=0.1.8 -pkgrel=1 +pkgrel=2 pkgdesc="A TB303-style synthesizer for DSSI" url="https://github.com/gordonjcp/nekobee" depends=('liblo' 'gtk2') @@ -19,5 +19,9 @@ cd $startdir/src/$pkgname-$pkgver patch -p1 -i $srcdir/$pkgname.patch ./waf configure --prefix=/usr ./waf -DESTDIR=$startdir/pkg ./waf install +} + +package() { +cd $startdir/src/$pkgname-$pkgver +DESTDIR=$pkgdir ./waf install } -- cgit v1.2.3