aboutsummaryrefslogtreecommitdiffstats
path: root/main/xfce4-whiskermenu-plugin/APKBUILD
blob: 07a0bab0de2b4840eaeb4807edffe16448dd8e5d (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.3
pkgrel=0
pkgdesc="alternate application launcher for Xfce"
url="https://gottcode.org/xfce4-whiskermenu-plugin/"
arch="all"
license="GPL-2.0"
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="3e46fc13931f668e32fa3b7e97414eb031aaa29e4c950b0f6c4b5a164dd56f1ca7b355f3f42c0107165e22eb009a611ffff6ce9da1fd106df7eaab7688d42d58  xfce4-whiskermenu-plugin-1.7.3.tar.bz2"