diff options
author | davidovski <david@davidovski.xyz> | 2022-06-06 21:25:48 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-06-06 21:25:48 +0000 |
commit | ccc722b7ed330198d82a3cf28ead76d6d107a70a (patch) | |
tree | 7611b3cc4f3ca681524fa28b174a0253eb802e0e /repo/soundtouch/soundtouch.xibuild | |
parent | 9ee32689f0b57b9e1de6d22c84ce8e3700b6122b (diff) |
added java
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 +} + |