diff options
Diffstat (limited to 'repo/soundtouch/soundtouch.xibuild')
-rw-r--r-- | repo/soundtouch/soundtouch.xibuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/repo/soundtouch/soundtouch.xibuild b/repo/soundtouch/soundtouch.xibuild new file mode 100644 index 0000000..a64c789 --- /dev/null +++ b/repo/soundtouch/soundtouch.xibuild @@ -0,0 +1,31 @@ +#!/bin/sh + +NAME="soundtouch" +DESC="Audio Processing library for changing Tempo, Pitch and Playback Rates" + +MAKEDEPS="autoconf automake libtool" + +PKG_VER=2.3.1 +SOURCE="https://codeberg.org/soundtouch/soundtouch/archive/$PKG_VER.tar.gz" + +prepare() { + ./bootstrap +} + +build() { + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --localstatedir=/var \ + --enable-shared \ + --disable-static + make +} + +package() { + make DESTDIR="$PKG_DEST" install + rm -rf "$PKG_DEST"/usr/doc +} + |