blob: bfdc48d0ecc6311fef73605e00746d4cf19b0e1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Maintainer: masutu <masutu dot arch at gmail dot com>
# Contributor: masutu <masutu dot arch at gmail dot com>
pkgname=fbmix
#pkgver=0.4.1
pkgver=0.4
pkgrel=1
pkgdesc="A simple mixer applet for the system tray"
arch=('i686' 'x86_64')
#url="http://sandbox.ltmnet.com/page/projects/fbmix"
url="http://ltmnet.com/"
license=('GPL')
depends=('alsa-lib' 'vte')
#source=("http://sandbox.ltmnet.com/downloads/${pkgname}-${pkgver}.tar.bz2")
source=("${pkgname}-${pkgver}.tar.bz2")
#md5sums=('12d3571658b6fa5b5f3bbb3dad9493d1')
md5sums=('3aee7ddc68facc966f0146d1a8f7e6c8')
prepare() {
cd "$srcdir/$pkgname"
sed -e '/^CFLAGS=/s,$, -fcommon,' -i Makefile
}
build() {
#cd "$srcdir/$pkgname-$pkgver"
cd "$srcdir/$pkgname"
make
}
package() {
#cd "$srcdir/$pkgname-$pkgver"
cd "$srcdir/$pkgname"
install -D -m755 fbmix $pkgdir/usr/bin/fbmix
install -D -m644 icons/fbmix.png $pkgdir/usr/share/icons/fbmix.png
install -D -m644 conf/fbmix $pkgdir/usr/share/fbext/fbmix/config
}
# vim:set ts=2 sw=2 et:
|