diff options
author | Márcio Alexandre Silva Delgado <coadde@lavabit.com> | 2013-05-25 19:05:23 -0300 |
---|---|---|
committer | Márcio Alexandre Silva Delgado <coadde@lavabit.com> | 2013-05-25 19:05:23 -0300 |
commit | 7c22bc7867bc4315e2fa35dada87d21b8c126afa (patch) | |
tree | ec4761412dda9c61a7c04919ea7aba069ea1999a /pcr/nekobee/PKGBUILD | |
parent | 12ceefcc79ff464879f52a237368df3a2559d945 (diff) | |
parent | dd7d49a59d8104c84ecf800f39d70b64fcd3543d (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/srv/git/abslibre
Diffstat (limited to 'pcr/nekobee/PKGBUILD')
-rw-r--r-- | pcr/nekobee/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
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 <theguestone at gmail dot com> + +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 +} |