wok-next annotate kvantum/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 4e37d8bb7375
children 5669e8b3be70
rev   line source
al@20295 1 # SliTaz package receipt v2.
al@20295 2
al@20295 3 PACKAGE="kvantum"
al@20295 4 VERSION="0.10.5"
al@20295 5 CATEGORY="customization"
al@20295 6 SHORT_DESC="Linux SVG-based theme engine for Qt4/Qt5 and KDE"
al@20295 7 MAINTAINER="al.bobylev@gmail.com"
al@20295 8 LICENSE="GPL3"
al@20295 9 WEB_SITE="https://github.com/tsujan/Kvantum/tree/master/Kvantum"
al@20295 10
al@20295 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@20295 12 WGET_URL="https://github.com/tsujan/Kvantum/archive/V$VERSION.tar.gz"
al@20295 13
al@20295 14 BUILD_DEPENDS="qt5-dev xorg-libX11-dev"
al@20295 15
al@20295 16 compile_rules() {
al@20295 17 mkdir build
al@20295 18 cd build
al@20295 19 qmake \
al@20295 20 PREFIX=/usr \
al@20295 21 ../Kvantum &&
al@20295 22 make &&
al@20295 23 make INSTALL_ROOT=$install install || return 1
al@20295 24
al@20295 25 find $install/usr/share -type f -exec chmod 0644 '{}' \;
al@20295 26 }
al@20295 27
al@20295 28 genpkg_rules() {
al@20295 29 copy @std
al@20502 30 DEPENDS="libatomic mesa qt5-base qt5-svg qt5-x11extras xorg-libX11 \
al@20295 31 xorg-libXext"
al@20295 32 }