22 lines
683 B
Bash
22 lines
683 B
Bash
|
# Template file for 'gpick'
|
||
|
pkgname=gpick
|
||
|
version=0.2.5
|
||
|
revision=1
|
||
|
wrksrc="${pkgname}-${pkgname}-${version}"
|
||
|
build_style=scons
|
||
|
hostmakedepends="scons pkg-config"
|
||
|
makedepends="boost-devel gtk+-devel lua-devel"
|
||
|
short_desc="Advanced color picker written in C++ using GTK+ toolkit"
|
||
|
maintainer="Alexander Mamay <alexander@mamay.su>"
|
||
|
license="3-clause-BSD"
|
||
|
homepage="https://github.com/thezbyg/gpick"
|
||
|
distfiles="https://github.com/thezbyg/gpick/archive/${pkgname}-${version}.tar.gz"
|
||
|
checksum="3a9706c101f82e9a49880db9fb408c760d49e6b4506ee5768962c25ec2ecbb57"
|
||
|
|
||
|
do_install() {
|
||
|
scons DESTDIR=${DESTDIR}/usr install
|
||
|
rm -rf ${DESTDIR}/usr/share/doc
|
||
|
vlicense installer/License.txt LICENSE
|
||
|
}
|
||
|
|