diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/shell-fm/PKGBUILD | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/shell-fm/PKGBUILD')
-rw-r--r-- | community/shell-fm/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/community/shell-fm/PKGBUILD b/community/shell-fm/PKGBUILD new file mode 100644 index 000000000..88cfe9926 --- /dev/null +++ b/community/shell-fm/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 68046 2012-03-17 12:04:37Z giovanni $ +# Maintainer: Daenyth +# Contributor: Geoffroy Carrier <geoffroy.carrier@koon.fr> +# Contributor: Jeff Mickey <jeff@archlinux.org> + +pkgname=shell-fm +pkgver=0.8 +pkgrel=1 +pkgdesc="A console based player for the streams provided by Last.FM" +arch=('i686' 'x86_64') +url="http://github.com/jkramer/$pkgname" +license=('GPL') +depends=('libmad' 'libao' 'taglib') +source=($pkgname-$pkgver.tar.gz::http://github.com/jkramer/$pkgname/tarball/v$pkgver) +md5sums=('ce5c45ead71a299edbff280d4007ad99') + +build() { + cd "$srcdir"/jkramer-$pkgname-* + + make +} + +package() { + cd "$srcdir"/jkramer-$pkgname-* + + make DESTDIR="$pkgdir" install + + cd "$pkgdir/usr" + install -dm755 "$pkgdir/usr/share" + mv man share +} |