diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2013-08-16 11:29:14 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-08-16 11:29:14 +0000 |
commit | 1cd5ce90e0a9eac77f938dc053d8709da0d3e5d1 (patch) | |
tree | cc21781df985ef86188e441bc09d67d8bd6f6aeb /main/umix | |
parent | 661e85085ada6b6d1fc90742df5475ab64e9aa60 (diff) | |
download | aports-1cd5ce90e0a9eac77f938dc053d8709da0d3e5d1.tar.bz2 aports-1cd5ce90e0a9eac77f938dc053d8709da0d3e5d1.tar.xz |
main/umix: update config.sub
Diffstat (limited to 'main/umix')
-rw-r--r-- | main/umix/APKBUILD | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/main/umix/APKBUILD b/main/umix/APKBUILD index ec07cc7e08..7200cd0ef7 100644 --- a/main/umix/APKBUILD +++ b/main/umix/APKBUILD @@ -1,8 +1,8 @@ -# Contributor: Michael Mason <ms13sp@gmail.com> -# Maintainer: Michael Mason <ms13sp@gmail.com> +# Contributor: Michael Mason <ms13sp@gmail.com> +# Maintainer: Michael Mason <ms13sp@gmail.com> pkgname=umix pkgver=1.0.2 -pkgrel=2 +pkgrel=3 pkgdesc="Program for adjusting soundcard volumes" url="http://umix.sf.net" arch="all" @@ -13,9 +13,14 @@ install= subpackages="$pkgname-doc" source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz" -build() { - cd "$srcdir/$pkgname-$pkgver" +_builddir="$srcdir"/umix-$pkgver +prepare() { + cd "$_builddir" + update_config_sub +} +build() { + cd "$_builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -28,7 +33,7 @@ build() { } package() { - cd "$srcdir/$pkgname-$pkgver" + cd "$_builddir" make DESTDIR="$pkgdir" install } |