b8918e2a7d
+ Rename lua and lua-devel to lua52 and lua52-devel + Modify packages depending on lua52 accordingly: + Many packages auto-detect lua52 files + Some packages need hints where / how to find lua52 + One package (xmoto) downgraded to lua51, because it wouldn't find lua52 + One package (vim) upgraded to lua (5.3.1) There may be more packages upgradable without problems. I didn't want to change too much in this move without the respective package maintainers first taking a look. Most notably conky-cli wouldn't work with lua52. I upgraded it to 1.10.0 (same as conky) and tried to keep the flags the same for the change from gnu-configure to cmake.
21 lines
685 B
Bash
21 lines
685 B
Bash
# Template file for 'gpick'
|
|
pkgname=gpick
|
|
version=0.2.5
|
|
revision=2
|
|
wrksrc="${pkgname}-${pkgname}-${version}"
|
|
build_style=scons
|
|
hostmakedepends="scons pkg-config"
|
|
makedepends="boost-devel gtk+-devel lua52-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
|
|
}
|
|
|