From bb0ea86d1be72a8b3450ff8499a3fc0f7eeaef3f Mon Sep 17 00:00:00 2001 From: Kevin Mihelich Date: Sat, 4 Jul 2015 15:38:25 +0000 Subject: [PATCH] added extra/sbsms --- extra/sbsms/PKGBUILD | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 extra/sbsms/PKGBUILD diff --git a/extra/sbsms/PKGBUILD b/extra/sbsms/PKGBUILD new file mode 100644 index 000000000..dd5a96091 --- /dev/null +++ b/extra/sbsms/PKGBUILD @@ -0,0 +1,29 @@ +# $Id$ +# Maintainer: Eric BĂ©langer +# Contributor: Devin J. Pohly + +# ALARM: Kevin Mihelich +# - configure with --disable-sse + +pkgname=sbsms +pkgver=2.0.2 +pkgrel=1 +pkgdesc="Library for time stretching and pitch scaling of audio" +arch=('i686' 'x86_64') +url="http://sbsms.sourceforge.net/" +license=('GPL') +depends=('gcc-libs') +options=('!staticlibs') +source=(http://downloads.sourceforge.net/project/sbsms/$pkgname/$pkgver/lib$pkgname-$pkgver.tar.gz) +sha1sums=('1842d0eae3cf5ac355d754e68fcdfd9391cd2fb7') + +build() { + cd lib$pkgname-$pkgver + ./configure --prefix=/usr --enable-shared --disable-sse + make +} + +package() { + cd lib$pkgname-$pkgver + make DESTDIR="$pkgdir/" install +}