diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-03-26 07:52:04 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-03-26 07:52:04 +0000 |
commit | 6f62e6908583151e96af3c342e3adc4727a1ae53 (patch) | |
tree | a454a97a52d1af38e0b9b86ae60502d1d67a1eba /testing/spandsp | |
parent | cd6bf3c4d697b211e52463a308125de7bcf71e5a (diff) | |
download | aports-6f62e6908583151e96af3c342e3adc4727a1ae53.tar.bz2 aports-6f62e6908583151e96af3c342e3adc4727a1ae53.tar.xz |
testing/spandsp: change version so apk tools will be able to handle upgrades
Diffstat (limited to 'testing/spandsp')
-rw-r--r-- | testing/spandsp/APKBUILD | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/testing/spandsp/APKBUILD b/testing/spandsp/APKBUILD index 1078536609..dd1f227a39 100644 --- a/testing/spandsp/APKBUILD +++ b/testing/spandsp/APKBUILD @@ -1,7 +1,8 @@ # Contributor: # Maintainer: pkgname=spandsp -pkgver=0.0.5pre4 +pkgver=0.0.5_pre4 +_ver=0.0.5pre4 pkgrel=0 pkgdesc="library to use DSP functions for telephony" url="http://www.soft-switch.org/" @@ -10,7 +11,7 @@ depends="uclibc tiff" makedepends="tiff-dev" install= subpackages="$pkgname-dev" -source="http://www.soft-switch.org/downloads/spandsp/$pkgname-$pkgver.tgz" +source="http://www.soft-switch.org/downloads/spandsp/$pkgname-$_ver.tgz" build() { cd "$srcdir/$pkgname-0.0.5" @@ -20,7 +21,7 @@ build() { --mandir=/usr/share/man \ --infodir=/usr/share/info make || return 1 - make DESTDIR="$pkgdir" install + make -j1 DESTDIR="$pkgdir" install } |