diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-11-06 07:53:02 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-11-06 07:53:02 +0000 |
commit | ac8627b80801927bdf99cbf89635287ad2c66766 (patch) | |
tree | a494b87e55285548617c874ec1b13dd9f779b56b /testing/umix | |
parent | 3b5f8fa6c68e6977af40b21a8a7796f9549c2351 (diff) | |
download | aports-ac8627b80801927bdf99cbf89635287ad2c66766.tar.bz2 aports-ac8627b80801927bdf99cbf89635287ad2c66766.tar.xz |
testing/umix: moved from unstable. minor build fix
Diffstat (limited to 'testing/umix')
-rw-r--r-- | testing/umix/APKBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/testing/umix/APKBUILD b/testing/umix/APKBUILD new file mode 100644 index 000000000..443f43c65 --- /dev/null +++ b/testing/umix/APKBUILD @@ -0,0 +1,30 @@ +# Contributor: Michael Mason <ms13sp@gmail.com> +# Maintainer: Michael Mason <ms13sp@gmail.com> +pkgname=umix +pkgver=1.0.2 +pkgrel=0 +pkgdesc="Program for adjusting soundcard volumes" +url="http://umix.sf.net" +license="GPL" +depends= +makedepends= +install= +subpackages="$pkgname-doc" +source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz" + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info + make || return 1 +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install +} + +md5sums="e38fc288273cc8b5b34f8769f06b32ee umix-1.0.2.tar.gz" |