diff options
Diffstat (limited to 'pcr-testing')
-rw-r--r-- | pcr-testing/mhwaveedit/PKGBUILD | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/pcr-testing/mhwaveedit/PKGBUILD b/pcr-testing/mhwaveedit/PKGBUILD new file mode 100644 index 000000000..4f3e76fea --- /dev/null +++ b/pcr-testing/mhwaveedit/PKGBUILD @@ -0,0 +1,40 @@ +# Maintainer (AUR): Christopher Arndt <aur -at- chrisarndt -dot- de> +# Contributor: bill-auger <bill-auger@programmer.net> + + +pkgname=mhwaveedit +pkgver=1.4.24 +pkgrel=1 +pkgdesc="A simple and fast GTK2 audio editor (git version)" +arch=('armv7h' 'i686' 'x86_64') +url=https://github.com/magnush/mhwaveedit +license=('GPL2') +groups=('pro-audio') + +depends=(gtk2 hicolor-icon-theme libasound.so libjack.so libpulse.so libsamplerate.so + libsndfile.so sdl) +makedepends=(alsa-lib git ladspa libpulse libsamplerate libsndfile jack) + +source=(${pkgname}-${pkgver}.tar.gz::https://github.com/magnush/${pkgname}/archive/v${pkgver}.tar.gz) +sha256sums=('a4115b3d18f3f038b08b2bf4ff599703b7ba69bc7ac510d5f7279b3f47ea57dd') + + +build() +{ + cd "${srcdir}"/${pkgname}-${pkgver} + + ./configure \ + --prefix=/usr \ + --with-double-samples \ + --without-arts \ + --without-esound \ + --without-oss + make +} + +package() +{ + cd "${srcdir}"/${pkgname}-${pkgver} + + make DESTDIR="${pkgdir}"/ install +} |