aboutsummaryrefslogtreecommitdiffstats
path: root/main/xfce4-whiskermenu-plugin/APKBUILD
blob: 97a18d739b1ed0f963fe666e177c7a811c105764 (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: Natanael Copa <ncopa@alpinelinux.org>
pkgname=xfce4-whiskermenu-plugin
pkgver=1.7.0
pkgrel=0
pkgdesc="alternate application launcher for Xfce"
url="http://gottcode.org/xfce4-whiskermenu-plugin/"
arch="all"
license="GPL2"
depends=""
depends_dev=""
makedepends="$depends_dev cmake libxfce4ui-dev libxfce4util-dev exo-dev
	garcon-dev xfce4-panel-dev"
install=""
subpackages="$pkgname-doc $pkgname-lang"
source="http://mirror.netcologne.de/xfce/src/panel-plugins/xfce4-whiskermenu-plugin/${pkgver%.*}/xfce4-whiskermenu-plugin-$pkgver.tar.bz2"

_builddir="$srcdir"/xfce4-whiskermenu-plugin-$pkgver
prepare() {
	local i
	cd "$_builddir"
	for i in $source; do
		case $i in
		*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
		esac
	done
}

build() {
	cd "$_builddir"
	cmake \
		-DCMAKE_INSTALL_PREFIX=/usr \
		-DCMAKE_INSTALL_LIBDIR=lib \
		-DCMAKE_BUILD_TYPE=Release \
		. || return 1
	make || return 1
}

package() {
	cd "$_builddir"
	make install LIBDIR=lib DESTDIR="$pkgdir" || return 1
}

sha512sums="a41ce1c34db25d573fc39deead11a0945df0c63b3ce64f11a2c03664a91fd206b7f39352f20521c9e73789b9f723d710a07d20fbb2e1def09fb1d073a9adbaff  xfce4-whiskermenu-plugin-1.7.0.tar.bz2"