mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
25 lines
894 B
Bash
25 lines
894 B
Bash
# 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.16
|
|
pkgrel=1
|
|
pkgdesc="A graphical program for editing, playing and recording sound files."
|
|
arch=('i686' 'x86_64')
|
|
url="https://gna.org/projects/mhwaveedit"
|
|
license=('GPL')
|
|
depends=('libsamplerate' 'gtk2' 'jack-audio-connection-kit')
|
|
source=(http://download.gna.org/$pkgname/$pkgname-$pkgver.tar.bz2
|
|
mhwaveedit-1.4.16-pulse.patch)
|
|
md5sums=('3648d480668b0ddcd4b0aebf00493812'
|
|
'8055630809757de8c87094b0c3d6f327')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
patch -p1 < $srcdir/mhwaveedit-1.4.16-pulse.patch
|
|
./configure --without-check-casts --without-arts --without-esound \
|
|
--without-portaudio --without-sun --without-sdl --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
}
|