summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 13019e5195d9a5057be3893b26ea3e8d07b12b73 (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
44
45
46
47
# Maintainer: FreeByrd <nelsonbyrd248@gmail.com>
# Contributor: Tofe <chris.chapuis@gmail.com>
# Contributor: erm67 <erm67@yahoo.it>

pkgname=cairo-dock-git
pkgver=3.4.1
pkgrel=1
pkgdesc='Light eye-candy fully themable animated dock'
arch=('i686' 'x86_64')
url='http://glx-dock.org/'
license=('GPL')
depends=('curl' 'dbus-glib' 'glu' 'gtk3' 'librsvg')
makedepends=('cmake' 'git')
optdepends=('cairo-dock-plug-ins-git: Plugins for Cairo-Dock')
provides=('cairo-dock')
conflicts=('cairo-dock')
source=("cairo-dock::git+https://github.com/Cairo-Dock/cairo-dock-core.git")
sha256sums=('SKIP')

pkgver() {
  cd cairo-dock

  tag='3.4.99'
  echo "${tag}.r$(git rev-list --count ${tag}..HEAD).$(git rev-parse --short HEAD)"
}

build() {
  cd cairo-dock

  if [[ -d build ]]; then
    rm -rf build
  fi
  mkdir build && cd build

  cmake .. \
    -DCMAKE_BUILD_TYPE='Release' \
    -DCMAKE_INSTALL_PREFIX='/usr'
  make
}

package() {
  cd cairo-dock/build

  make DESTDIR="${pkgdir}" install
}

# vim: ts=2 sw=2 et: