summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4952005927ec16548a13f8092721c879f20280ed (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: robertfoster

pkgname=gnome-pie-git
pkgver=316.6d9b7ba
pkgrel=1
pkgdesc="A visual application launcher for gnome."
arch=('i686' 'x86_64')
url="https://github.com/Simmesimme/Gnome-Pie"
license=('GPL')
depends=('gtk3' 'libunique3' 'gnome-menus' 'cairo' 'libgee' 'libxml2' 'libxtst' 'libunique' 'gdk-pixbuf2' 'hicolor-icon-theme' 'bamf')
makedepends=('vala' 'cmake' 'git')
install='gnome-pie-git.install'
source=('gnome-pie::git://github.com/Simmesimme/Gnome-Pie.git')


build() {
  cd gnome-pie
  msg "Building gnome-pie"
  mkdir -p build
  cd build
  cmake -DCMAKE_INSTALL_PREFIX=/usr ..
  make
}

package() {
  cd gnome-pie/build
  make DESTDIR=${pkgdir} install
}

pkgver() {
  cd gnome-pie
  echo $(git rev-list --count master).$(git rev-parse --short master)
}

md5sums=('SKIP')