mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
28 lines
947 B
Bash
28 lines
947 B
Bash
|
# $Id: PKGBUILD 53844 2009-10-03 14:46:07Z andyrtr $
|
||
|
# Maintainer: tobias <tobias at archlinux.org>
|
||
|
# Contributor: Aurelien Foret <orelien@chez.com>
|
||
|
|
||
|
pkgname=xfce4-clipman-plugin
|
||
|
pkgver=1.1.1
|
||
|
pkgrel=1
|
||
|
pkgdesc="A clipboard plugin for the Xfce4 panel"
|
||
|
arch=(i686 x86_64)
|
||
|
license=('custom')
|
||
|
url="http://xfce-goodies.berlios.de/"
|
||
|
groups=('xfce4-goodies')
|
||
|
depends=('xfce4-panel' 'libunique' 'hicolor-icon-theme')
|
||
|
makedepends=('pkgconfig' 'intltool')
|
||
|
options=('!libtool')
|
||
|
install=${pkgname}.install
|
||
|
source=(http://archive.xfce.org/src/panel-plugins/${pkgname}/1.1/${pkgname}-${pkgver}.tar.bz2)
|
||
|
md5sums=('0884207cabd3a3a94c86b919bbf1617b')
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}/${pkgname}-${pkgver}
|
||
|
./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
|
||
|
--localstatedir=/var --disable-static --enable-unique
|
||
|
make || return 1
|
||
|
make DESTDIR=${pkgdir} install || return 1
|
||
|
install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
|
||
|
}
|