mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
25 lines
846 B
Bash
25 lines
846 B
Bash
# $Id: PKGBUILD 34177 2009-04-07 17:16:30Z andrea $
|
|
# Maintainer: aurelien <aurelien@archlinux.org>
|
|
# Contributor: Tobias Kieslich <tobias (at) archlinux.org>
|
|
|
|
pkgname=xfce4-mpc-plugin
|
|
pkgver=0.3.3
|
|
pkgrel=3
|
|
pkgdesc="plugin to control the music player daemon from the xfce4-panel"
|
|
arch=(i686 x86_64)
|
|
license=('GPL2')
|
|
url="http://goodies.xfce.org/projects/panel-plugins/xfce4-mpc-plugin"
|
|
groups=('xfce4-goodies')
|
|
depends=('xfce4-panel' 'libmpd>=0.16.1')
|
|
makedepends=('pkgconfig' 'perlxml')
|
|
options=(!libtool)
|
|
source=(http://goodies.xfce.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('b4f7f67589f34f77973a51dd5069712d')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
|
|
--localstatedir=/var --disable-static
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
}
|