wok-next view featherpad/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="featherpad"
4 VERSION="0.6.3"
5 CATEGORY="text"
6 SHORT_DESC="Lightweight Qt5 Plain-Text Editor for Linux"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL3"
9 WEB_SITE="https://github.com/tsujan/FeatherPad"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/tsujan/FeatherPad/archive/V$VERSION.tar.gz"
14 BUILD_DEPENDS="qt5-dev mesa-dev"
16 compile_rules() {
17 mkdir build
18 cd build
19 qmake \
20 PREFIX=/usr \
21 .. &&
22 make &&
23 make INSTALL_ROOT=$install install || return 1
25 find $install/usr/share -type f -exec chmod 0644 '{}' \;
26 }
28 genpkg_rules() {
29 copy @std
30 DEPENDS="libatomic mesa qt5-base qt5-svg qt5-x11extras libx11"
31 }