diff options
Diffstat (limited to 'community/alsa-tools/PKGBUILD')
-rw-r--r-- | community/alsa-tools/PKGBUILD | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/community/alsa-tools/PKGBUILD b/community/alsa-tools/PKGBUILD deleted file mode 100644 index c49246f5d..000000000 --- a/community/alsa-tools/PKGBUILD +++ /dev/null @@ -1,40 +0,0 @@ -# $Id: PKGBUILD 62752 2012-01-25 20:12:30Z seblu $ -#Maintainer: Sebastien Luttringer <seblu+arch@seblu.net> -#Contributor: Jochen Immend�rfer <jochen dot immendoerfer at gmail dot com> - -pkgname=alsa-tools -pkgver=1.0.25 -pkgrel=1 -pkgdesc='ALSA tools package' -arch=('i686' 'x86_64') -url='http://alsa-project.org/' -license=('GPL2') -depends=('fltk' 'alsa-lib' 'gtk2') -options=('!libtool') -source=("ftp://ftp.alsa-project.org/pub/tools/$pkgname-$pkgver.tar.bz2") -md5sums=('57bfec98a814d12e0f7ab379aaeccd87') - -build() { - for f in $(find "$srcdir/$pkgname-$pkgver" -type f -name configure ); do - [[ -x $f ]] || continue - cd "${f%/*}" - [[ qlo10k1 = ${PWD##*/} ]] && continue - [[ hwmixvolume = ${PWD##*/} ]] && continue - msg2 "Building ${PWD##*/}" - ./configure --prefix=/usr --x-libraries=/usr/lib - make - done -} - -package() { - for f in $(find "$srcdir/$pkgname-$pkgver" -type f -name configure ); do - [[ -x $f ]] || continue - cd "${f%/*}" - [[ qlo10k1 = ${PWD##*/} ]] && continue - [[ hwmixvolume = ${PWD##*/} ]] && continue - msg2 "Installing ${PWD##*/}" - make "DESTDIR=$pkgdir" install - done -} - -# vim:set ts=2 sw=2 ft=sh et: |