summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 30620ce01ddab228c7ff13b68f07321dbad7a131 (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: Julian Geywitz <aur@geigi.de>+

pkgname=color-picker-git
_gitname=ColorPicker
pkgdesc='One Color Picker to rule them all! No overhelming menus or settings. An easy tool with the features you need.'
pkgver="20171218"
pkgrel=1
url='https://github.com/RonnyDo/ColorPicker'
arch=('i686' 'x86_64')
license=('GPL3')
makedepends=('meson' 'ninja' 'vala' 'granite' 'git')
depends=(
  'gtk3' 'granite'
)
conflicts=("${_gitname}")
provides=("${_gitname}")
source=(
  "git://github.com/RonnyDo/ColorPicker.git"
  
)
sha256sums=(
  'SKIP'
)

build() {
    cd "$_gitname"
    meson build && cd build
    meson configure -Dprefix=/usr
    ninja
}

package() {
    cd "${_gitname}/build"
    DESTDIR="${pkgdir}" ninja install
}