summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 59a5cc3ca8f11ff0b11a71ad7186820b8cad98df (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
# Maintainer: twa022 <twa022 at gmail dot com>
# Contributor: Diego Principe <cdprincipe@at@gmail@dot@com>
# Contributor: PAblo Lezaeta <prflr88@gmail.com>

_pkgname=xfce4-whiskermenu-plugin
pkgname=xfce4-whiskermenu-plugin-git
pkgver=2.0.0.42.g8e015
pkgrel=1
pkgdesc="Alternate Xfce menu"
arch=("i686" "x86_64")
url="http://gottcode.org/${_pkgname}/"
license=("GPL2")
depends=("xfce4-panel")
makedepends=("cmake" "exo>=0.11" "" "git")
groups=("xfce4-goodies" "xfce4-goodies-git")
provides=("xfce4-whiskermenu-plugin")
conflicts=("xfce4-whiskermenu-plugin")
source=("$_pkgname::git+http://github.com/gottcode/xfce4-whiskermenu-plugin")
md5sums=("SKIP")

pkgver() {
  cd "${srcdir}/${_pkgname}"
  git describe --always | sed 's|-|.|g' | grep -o '[0-9]..*[0-9]'
}

build() {
  cd "${srcdir}/${_pkgname}"
  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr  -DCMAKE_INSTALL_LIBDIR=/usr/lib
  make
}

package() {
  cd "${srcdir}/${_pkgname}"
  make install/strip DESTDIR=${pkgdir}
}