mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
20 lines
547 B
Bash
20 lines
547 B
Bash
# Contributor: dibblethewrecker .at. jiwe .dot. org
|
|
|
|
pkgname=gkrellmpc
|
|
pkgver=0.1_beta9
|
|
pkgrel=4
|
|
pkgdesc="A mpd control plugin for gkrellm2"
|
|
license=('GPL')
|
|
arch=('i686' 'x86_64')
|
|
depends=('gkrellm' 'curl')
|
|
source=(http://mina.naguib.ca/dist/$pkgname-$pkgver.tar.gz)
|
|
url="http://mpd.wikia.com/wiki/Client:GKrellMPC"
|
|
md5sums=('cb3ba81e7e9a73f0e84623d50df09340')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
make || return 1
|
|
install -D -m755 gkrellmpc.so \
|
|
$startdir/pkg/usr/lib/gkrellm2/plugins/gkrellmpc.so
|
|
}
|
|
# vim: ts=2 sw=2 et ft=sh
|