mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
27 lines
910 B
Bash
27 lines
910 B
Bash
# $Id: PKGBUILD 30697 2009-03-21 12:09:32Z allan $
|
|
# Maintainer: tobias <tobias funnychar archlinux.org>
|
|
|
|
pkgname=xfce4-playercontrol-plugin
|
|
pkgver=0.3.0
|
|
pkgrel=1
|
|
pkgdesc="An XMMS control plugin for the Xfce panel"
|
|
arch=(i686 x86_64)
|
|
license=('custom')
|
|
url="http://goodies.xfce.org/projects/panel-plugins/xfce4-xmms-plugin"
|
|
groups=('xfce4-goodies')
|
|
depends=('xfce4-panel>=4.5.99.1')
|
|
makedepends=('pkgconfig' 'intltool')
|
|
conflicts=('xfce4-xmms-plugin')
|
|
replaces=('xfce4-xmms-plugin')
|
|
options=('!libtool')
|
|
source=(http://www.bilimfeneri.gen.tr/ilgar/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('307c896467e204706cf04942151f2fcc')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
|
|
--localstatedir=/var --disable-static
|
|
make || return 1
|
|
make DESTDIR=${pkgdir}/ install
|
|
install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
|
|
}
|