wok-next view screengrab/receipt @ rev 21724

busybox: update configs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 11:04:25 2020 +0000 (2020-09-01)
parents 0c430fcaf2d9
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="screengrab"
4 VERSION="1.97"
5 CATEGORY="utilities"
6 SHORT_DESC="Crossplatform tool for fast making screenshots"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="https://github.com/lxqt/screengrab"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="https://github.com/QtDesktop/screengrab/releases/download/$VERSION/$TARBALL"
14 BUILD_DEPENDS="cmake qt5-dev mesa-dev kwindowsystem-dev libqtxdg-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="kwindowsystem libqtxdg qt5-base qt5-svg qt5-x11extras libx11 \
29 libxext libxcb"
30 }