mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
25 lines
650 B
Bash
25 lines
650 B
Bash
# arch contributor: https://projects.archlinux.org/svntogit/packages.git/plain/trunk/PKGBUILD?h=packages/sbsms
|
|
|
|
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
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd lib$pkgname-$pkgver
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|