summaryrefslogtreecommitdiff
path: root/pcr-testing
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2020-07-25 13:01:26 -0400
committerbill-auger <mr.j.spam.me@gmail.com>2020-07-25 13:03:46 -0400
commit56401b8deb5e1e5068c7b835b56cefa449a70786 (patch)
treeb347aaa8d999ff9298440a2c4a67d5af53b7d799 /pcr-testing
parentabc9a7dd012e13a48bea0f9da047f9ec2401f7f2 (diff)
[mhwaveedit]: add package
Diffstat (limited to 'pcr-testing')
-rw-r--r--pcr-testing/mhwaveedit/PKGBUILD40
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
+}