PKGBUILDs/extra/sbsms/PKGBUILD

30 lines
832 B
Bash
Raw Normal View History

2015-07-04 15:38:25 +00:00
# $Id$
# Maintainer: Eric Bélanger <eric@archlinux.org>
# Contributor: Devin J. Pohly <djpohly+arch@gmail.com>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - configure with --disable-sse
pkgname=sbsms
pkgver=2.0.2
2018-06-05 18:03:37 +00:00
pkgrel=3
2015-07-04 15:38:25 +00:00
pkgdesc="Library for time stretching and pitch scaling of audio"
2018-06-05 18:03:37 +00:00
arch=('x86_64')
2015-07-04 15:38:25 +00:00
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)
2018-06-05 18:03:37 +00:00
sha512sums=('8aaab3e191f3e10e559683ab4ebdcb8d951cf0e776390234f25675a98640d60d20aed872061ba72fdc3bd7827b7d46bc27225fe947cdd7fa4312f75cbdd78e6c')
2015-07-04 15:38:25 +00:00
build() {
cd lib$pkgname-$pkgver
./configure --prefix=/usr --enable-shared --disable-sse
make
}
package() {
cd lib$pkgname-$pkgver
make DESTDIR="$pkgdir/" install
}