wok-next view qlipper/receipt @ rev 20502

Swap: current mesa (which is developing and change it's version) is just mesa, while old mesa is mesa12 now (will be removed if no one old package require it).
Also, change long names to its origins: libglu-mesa -> glu, libglw-mesa -> glw, all variations with libegl -> mesa-libegl (because it is part of mesa package).
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Mar 16 00:27:34 2018 +0200 (2018-03-16)
parents e756329576c3
children 5669e8b3be70
line source
1 # SliTaz package receipt v2.
3 PACKAGE="qlipper"
4 VERSION="5.0.0"
5 CATEGORY="utilities"
6 SHORT_DESC="Clipboard history tool"
7 MAINTAINER="psychomaniak@xakep.ru"
8 LICENSE="GPL2"
9 WEB_SITE="https://github.com/pvanek/qlipper"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/pvanek/qlipper/archive/$VERSION.tar.gz"
14 BUILD_DEPENDS="cmake qt5-dev mesa-dev"
16 compile_rules() {
17 mkdir build; cd build
18 cmake \
19 -DCMAKE_BUILD_TYPE=Release \
20 -DCMAKE_INSTALL_PREFIX=/usr \
21 .. &&
22 make &&
23 make install
24 }
26 genpkg_rules() {
27 copy @std
28 DEPENDS="qt5-base xorg-libX11"
29 }