summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ce3acf8ebacca4429e00903fe784ce6601d84f6e (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
pkgname=kcolorpicker-git
pkgver=r69.17c0510
pkgrel=1
pkgdesc='Qt basd Color Picker with popup menu'
arch=('i686' 'x86_64')
url='https://github.com/DamirPorobic/kcolorpicker'
license=('GPL')
makedepends=(
  git
  extra-cmake-modules
  qt5-tools
)
conflicts=(${pkgname%-git})
provides=(${pkgname%-git})
source=("git+$url.git")
md5sums=(SKIP)

prepare(){
  cd ${pkgname%-git}
  test -d build || mkdir build
}
pkgver(){
  cd ${pkgname%-git}
  set -o pipefail
  git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
    printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build(){
  cd ${pkgname%-git}/build
  cmake -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_SHARED_LIBS=ON ..
  make
}
package(){
  cd ${pkgname%-git}/build
  make DESTDIR="$pkgdir" install
}