diff options
author | James Meyer <james.meyer@operamail.com> | 2012-11-26 14:47:45 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2012-11-26 14:47:45 (GMT) |
commit | c1a839ef1ab2249239c093f9c8bf6604a3dae308 (patch) | |
tree | f1c2065ebbc39dea526516540df9481a850986ec /abs/core/aumix/PKGBUILD | |
parent | f591ead4c8a9b64b0630900aa12c260027a7db6f (diff) | |
download | linhes_pkgbuild-c1a839ef1ab2249239c093f9c8bf6604a3dae308.zip linhes_pkgbuild-c1a839ef1ab2249239c093f9c8bf6604a3dae308.tar.gz linhes_pkgbuild-c1a839ef1ab2249239c093f9c8bf6604a3dae308.tar.bz2 |
aumix: 2.9.1
Diffstat (limited to 'abs/core/aumix/PKGBUILD')
-rw-r--r-- | abs/core/aumix/PKGBUILD | 44 |
1 files changed, 30 insertions, 14 deletions
diff --git a/abs/core/aumix/PKGBUILD b/abs/core/aumix/PKGBUILD index 09b525a..aa9b072 100644 --- a/abs/core/aumix/PKGBUILD +++ b/abs/core/aumix/PKGBUILD @@ -1,24 +1,40 @@ -# Contributor: Stefan Husmann <stefan-husmann@t-online.de> +# $Id: PKGBUILD 70215 2012-05-02 12:56:49Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> pkgname=aumix -pkgver=2.8 +pkgver=2.9.1 pkgrel=4 pkgdesc="A color text mode sound mixer with GPM support" arch=('i686' 'x86_64') license=('GPL') -url="http://www.jpj.net/~trevor/aumix.html" -depends=('gpm') -conflicts=('aumix-gtk') +depends=() +makedepends=('gtk2' 'gpm' 'ncurses') +optdepends=('gtk2: aumix' + 'ncurses: aumix-nox' + 'gpm: aumix-nox') +replaces=('aumix-gtk') provides=('aumix-gtk') -source=(http://jpj.net/~trevor/aumix/aumix-$pkgver.tar.bz2 aumix.patch) -md5sums=('dc3fc7209752207c23e7c94ab886b340' 'a4dae53812a41b7576228c37856c701b') +install=aumix.install +url=(http://www.jpj.net/~trevor/aumix.html) +source=(http://www.jpj.net/~trevor/aumix/releases/aumix-$pkgver.tar.bz2 + aumix.desktop) build() { - cd $startdir/src/$pkgname-$pkgver - patch -Np1 <../aumix.patch || return 1 - # we build without X/GTK support so we can avoid the dependencies. - # if you want GTK support, you can rebuild aumix from your ABS tree. - ./configure --prefix=/usr --without-alsa --without-gtk --without-gtk1 || return 1 - make || return 1 - make DESTDIR=$startdir/pkg install || return 1 + cd $srcdir/aumix-$pkgver + + msg "No X11 build" + ./configure --prefix=/usr --mandir=/usr/share/man --without-gtk --without-gtk1 \ + --without-alsa --without-x + make + install -D -m0755 src/aumix $pkgdir/usr/bin/aumix-nox + make distclean + + msg "X11+GTK2 build" + ./configure --prefix=/usr --mandir=/usr/share/man --without-gtk1 --without-alsa \ + --without-gpm + make + make DESTDIR=$pkgdir install + install -D -m0644 $srcdir/aumix.desktop $pkgdir/usr/share/applications/aumix.desktop } +md5sums=('34f28ae1c94fc5298e8bb2688c4b3a20' + 'afba8b39b8dd95d8a9d74356023de14a') |