blob: da68e3ec617affae18077c03e33fc014df1ababa (
plain)
1 # Description: Album/Artist/Cover art pluign for gmpc
2 # URL: http://sarine.nl/gmpc
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Packager: James Mills, prologic at shortcircuit dot net dot au
5 #
6 # Depends on: gmpc
7
8 name=gmpc-lastfm
9 version=0.17.0
10 release=1
11 source=(http://download.sarine.nl/Programs/gmpc/$version/gmpc-last-fm-$version.tar.gz)
12
13 build() {
14 cd gmpc-last-fm-$version
15 ./configure --prefix=/usr
16 make
17 make DESTDIR=$PKG install
18 }
|