mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
21 lines
625 B
Bash
21 lines
625 B
Bash
|
# $Id: PKGBUILD 9939 2008-08-21 01:55:00Z eric $
|
||
|
# Maintainer: damir <damir@archlinux.org>
|
||
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
||
|
|
||
|
pkgname=gqmpeg
|
||
|
pkgver=0.91.1
|
||
|
pkgrel=1
|
||
|
pkgdesc="GQmpeg is a frontend to mpg123 with extensive themeability and playlist support"
|
||
|
arch=('i686' 'x86_64')
|
||
|
depends=('bash' 'gtk2' 'imlib' 'mpg321')
|
||
|
source=(http://unc.dl.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
|
||
|
md5sums=('e22eda86fc3e59108c8d04abc37b3e56')
|
||
|
url="http://gqmpeg.sourceforge.net/"
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/$pkgname-$pkgver
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make prefix=$startdir/pkg/usr install
|
||
|
}
|