wok view tea/receipt @ rev 17501

Normalize tags "file-manager", "web-browser", "text-editor", "terminal", and "window-manager" according to tazx.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Jan 08 02:04:05 2015 +0200 (2015-01-08)
parents f4c22f009037
children 855292eaaf20
line source
1 # SliTaz package receipt.
3 PACKAGE="tea"
4 VERSION="33.5.0"
5 CATEGORY="development"
6 SHORT_DESC="Tead text editor using QT."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://tea-editor.sourceforge.net/"
11 WGET_URL="http://semiletov.org/tea-releases/$TARBALL"
12 TAGS="text-editor"
14 DEPENDS="xorg-libX11 libQtCore libQtXml libQtGui"
15 BUILD_DEPENDS="Qt4-dev qmake xorg-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 qmake PREFIX=/usr && make
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/bin $fs/usr/share/pixmaps
28 cp -a $src/bin/tea $fs/usr/bin
29 cp -a $src/icons/tea_icon_v2.png \
30 $fs/usr/share/pixmaps/tea.png
31 }