summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e4c5e32f3d763ea21de9d007cbd1caac7e507230 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Maintainer: Matt Parnell <parwok@gmail.com>
# Contributor: Christian Hesse <mail@eworm.de>
# Contributor: tobias <tobias at archlinux.org>
# Contributor: Aurelien Foret <orelien@chez.com>

pkgname=xfce4-clipman-plugin-classic
pkgver=1.2.6
pkgrel=1
pkgdesc='A clipboard plugin for the Xfce4 panel. Classic 1.2.6 version (fewer bugs, maintainer thinks)'
arch=('i686' 'x86_64')
license=('GPL')
url='http://goodies.xfce.org/projects/panel-plugins/xfce4-clipman-plugin'
groups=('xfce4-goodies')
depends=('xfce4-panel' 'libunique' 'libxtst' 'qrencode')
conflicts=('xfce4-clipman-plugin' 'xfce4-clipman-plugin-git')
provides=('xfce4-clipman-plugin')
makedepends=('xfce4-dev-tools' 'intltool' 'git')
options=('!libtool')
install=xfce4-clipman-plugin.install
source=("git://git.xfce.org/panel-plugins/xfce4-clipman-plugin#tag=${pkgver}")
sha256sums=('SKIP')

build() {
	cd xfce4-clipman-plugin/

	./autogen.sh
	./configure --prefix=/usr \
		--sysconfdir=/etc \
		--libexecdir=/usr/lib \
		--localstatedir=/var \
		--disable-static \
		--enable-unique \
		--enable-maintainer-mode \
		--disable-debug
	make
}

package() {
	cd xfce4-clipman-plugin/

	make DESTDIR="${pkgdir}" install
}