mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
18 lines
559 B
Bash
18 lines
559 B
Bash
# Maintainer: Geoffroy Carrier <geoffroy.carrier@koon.fr>
|
|
# Previous Maintainer: Jeff Mickey <jeff@archlinux.org>
|
|
|
|
pkgname=shell-fm
|
|
pkgver=0.6
|
|
pkgrel=1
|
|
pkgdesc="A console based player for the streams provided by Last.FM"
|
|
arch=('i686' 'x86_64')
|
|
url="http://nex.scrapping.cc/code/shell-fm/"
|
|
license=('GPL')
|
|
depends=('libmad' 'libao')
|
|
source=(http://nex.scrapping.cc/code/shell-fm/downloads/$pkgname-$pkgver.tar.bz2)
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make || return 1
|
|
make DESTDIR="$pkgdir/usr" install
|
|
}
|
|
md5sums=('dc8b1ffedf93df565f426f26943842ab')
|