diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/mhwaveedit |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/mhwaveedit')
-rw-r--r-- | community/mhwaveedit/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/community/mhwaveedit/PKGBUILD b/community/mhwaveedit/PKGBUILD new file mode 100644 index 000000000..83a9a86f2 --- /dev/null +++ b/community/mhwaveedit/PKGBUILD @@ -0,0 +1,28 @@ +# $Id $ +# Maintainer: Loui Chang <louipc.ist@gmail.com> +# Contributor: Andrea Scarpino <bash.lnx@gmail.com> +# Contributor: Robert Emil Berge <robert@rebi.no> + +pkgname=mhwaveedit +pkgver=1.4.20 +pkgrel=2 +pkgdesc="A graphical program for editing, playing and recording sound files." +arch=('i686' 'x86_64') +url="http://gna.org/projects/mhwaveedit" +license=('GPL') +depends=('libsamplerate' 'gtk2' 'jack') +source=(http://download.gna.org/$pkgname/$pkgname-$pkgver.tar.bz2) +md5sums=('979ac5776a57268aed0afa74d50c70a2') + +build() { + cd $srcdir/$pkgname-$pkgver + sed -i "s|Icon=mhwaveedit.xpm|Icon=mhwaveedit|" share/applications/mhwaveedit.desktop + ./configure --without-check-casts --without-arts --without-esound \ + --without-portaudio --without-sun --without-sdl --prefix=/usr + make +} + +package() { + cd $srcdir/$pkgname-$pkgver + make DESTDIR=$pkgdir install +} |