wok view tea/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents 855292eaaf20
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="tea"
4 VERSION="50.0.4"
5 CATEGORY="development"
6 TAGS="text-editor"
7 SHORT_DESC="A QT-based text editor."
8 MAINTAINER="pankso@slitaz.org"
9 LICENSE="GPL3"
10 WEB_SITE="http://semiletov.org/tea/"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="https://github.com/psemiletov/tea-qt/archive/$VERSION.tar.gz"
15 DEPENDS="libQtCore libQtGui libQtXml xorg-libX11"
16 BUILD_DEPENDS="qmake Qt4-dev xorg-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 qmake PREFIX=/usr &&
22 make
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/bin
29 mkdir -p $fs/usr/share/pixmaps
31 cp -a $src/bin/tea $fs/usr/bin
32 cp -a $src/icons/tea_icon_v2.png $fs/usr/share/pixmaps/tea.png
33 }