mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
31 lines
1 KiB
Bash
31 lines
1 KiB
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Corrado Primier <bardo@aur.archlinux.org>
|
||
|
# Contributor: William Rea <sillywilly@gmail.com>
|
||
|
|
||
|
pkgname=paman
|
||
|
pkgver=0.9.4
|
||
|
pkgrel=1
|
||
|
pkgdesc="A simple GTK frontend for the PulseAudio sound server"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://0pointer.de/lennart/projects/paman"
|
||
|
license=('GPL')
|
||
|
depends=('libglademm' 'pulseaudio' 'gnome-icon-theme')
|
||
|
source=(http://0pointer.de/lennart/projects/paman/${pkgname}-${pkgver}.tar.gz
|
||
|
paman.desktop)
|
||
|
md5sums=('4a77b129b0de8d261f2794ce3db518cc' 'a12318bcccbfe9ac922f9f97eb6409ac')
|
||
|
|
||
|
build() {
|
||
|
cd ${startdir}/src/paman-${pkgver}
|
||
|
./configure --prefix=/usr --disable-lynx
|
||
|
make || return 1
|
||
|
make DESTDIR=${startdir}/pkg install
|
||
|
|
||
|
# Fix broken icons.
|
||
|
#sed -i 's/audio-card/emblem-sound/' $startdir/pkg/usr/share/paman/paman.glade
|
||
|
#sed -i 's/go-jump/redo/' $startdir/pkg/usr/share/paman/paman.glade
|
||
|
install -Dm644 ${startdir}/src/paman.desktop \
|
||
|
${startdir}/pkg/usr/share/applications/paman.desktop
|
||
|
}
|
||
|
|
||
|
# vim:set ts=2 sw=2 et:
|