wok-next view qlipper/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents c0521c689857
children
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 libx11"
29 }