mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
25 lines
731 B
Bash
25 lines
731 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Andrea Scarpino <bash.lnx@gmail.com>
|
||
|
|
||
|
pkgname=striim
|
||
|
pkgver=0.0.4
|
||
|
pkgrel=3
|
||
|
pkgdesc="An Internet radio player for GNOME"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://striim.sourceforge.net"
|
||
|
license=('GPL')
|
||
|
depends=('dbus-python' 'python-musicbrainz2' 'gnome-python'
|
||
|
'gstreamer0.10-python' 'gstreamer0.10-ugly-plugins'
|
||
|
'gstreamer0.10-base-plugins' 'yelp')
|
||
|
makedepends=('pkgconfig' 'intltool')
|
||
|
install=$pkgname.install
|
||
|
source=(http://dl.getdropbox.com/u/877261/$pkgname-$pkgver.tar.bz2)
|
||
|
md5sums=('d54725b908ec6d1b8306e8f4dc00ce06')
|
||
|
|
||
|
build() {
|
||
|
cd "$srcdir/$pkgname-$pkgver"
|
||
|
./configure --prefix=/usr --disable-scrollkeeper
|
||
|
make || return 1
|
||
|
make DESTDIR="$pkgdir" install
|
||
|
}
|