summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9c32b6683d765f4367ea999eba32a05ec56ed0f4 (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
# Maintainer: Sam Burgos <santiago.burgos1089@gmail.com>

pkgname=clicky
pkgver=0.1
pkgrel=1
pkgdesc='Save images of your screen or individual windows. Desktop screenshot application'
arch=('any')
url="https://github.com/linuxmint/clicky"
license=(GPL3)
depends=(
    gsound
    python
    python-gobject
    python-setproctitle
    python-xapp
    python-xlib
    xapp
)
makedepends=(
    git
    gettext
    intltool
)
conflicts=(
    clicky-git
)
_commit='4ba6382183bf10d983427b8ef2df4e9d67322380'
source=("${pkgname}::git+${url}#commit=${_commit}")
sha256sums=('SKIP')

build() {
	cd "${pkgname}"
	make
}

package() {
  cd "${srcdir}"/"${pkgname}"
  cp -r usr $pkgdir
}