mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
added extra/sbsms
This commit is contained in:
parent
ccd98c68ba
commit
bb0ea86d1b
1 changed files with 29 additions and 0 deletions
29
extra/sbsms/PKGBUILD
Normal file
29
extra/sbsms/PKGBUILD
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
# $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
|
||||||
|
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
|
||||||
|
}
|
Loading…
Reference in a new issue