CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
aumix: fixed url and description.
[attic/ports/opt-cross.git] / aumix / Pkgfile
1 # Description: adjusts audio mixer
2 # URL: http://www.jpj.net/~trevor/aumix.html
3 # Maintainer: Victor Martinez, pitillo at ono dot com
4 # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5 # Depends on:
6
7 name=aumix
8 version=2.9.1
9 release=1
10 source=(http://www.jpj.net/~trevor/$name/releases/$name-$version.tar.bz2)
11
12 build() {
13 cd $name-$version
14
15 ./configure --build=$CHOST \
16 --host=$CTARGET \
17 --prefix=/usr \
18 --mandir=/usr/man \
19 --oldincludedir=$CLFS/usr/lib \
20 --includedir=$CLFS/usr/lib \
21 --without-gtk \
22 --without-sysmouse \
23 --without-gpm \
24 --disable-gtktest
25
26 make
27 make DESTDIR=$PKG install
28 rm -r $PKG/usr/share/locale
29 }