summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 92c444cf334557352cb06d11688907e9493d0799 (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
38
39
# Maintainer: Rastislav Barlik <barlik-arch at gmx dot com>
# Contributor: Michał Szymański <smiszym at gmail dot com>
# Contributor: Tom Vincent <http://www.tlvince.com/contact/>
# Contributor: SpepS <dreamspepser at yahoo dot it>

pkgname=jack_mixer
pkgver=10
pkgrel=1
pkgdesc="A GTK based Jack audio mixer"
url="http://home.gna.org/jackmixer/"
arch=('i686' 'x86_64')
license=('GPL2')
depends=('python2' 'python2-fpconst' 'pygtk' 'jack' 'hicolor-icon-theme')
optdepends=('lash: session support'
            'python2-gconf: gconf support')
options=('!libtool')
install="$pkgname.install"
source=("http://download.gna.org/jackmixer/$pkgname-$pkgver.tar.gz")
md5sums=('d45cf4665689cc83ccee8b25a41faf91')

build() {
  cd "$srcdir/$pkgname-$pkgver"

  #Python2 fixes
  export PYTHON="python2"
  sed -i "s_env python_&2_" $pkgname.py

  ./configure \
	--prefix=/usr \
	--sysconfdir=/usr/share \
	--disable-schemas-install

  make
}

package() {
  cd "$srcdir/$pkgname-$pkgver"
  make DESTDIR="$pkgdir/" install
}