wok view tea/receipt @ rev 14701

monitorix: update /etc/monitorix.conf (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jun 07 18:28:08 2013 +0200 (2013-06-07)
parents 120e8cf3363f
children 2b9f96603415
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 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://tea-editor.sourceforge.net/"
10 WGET_URL="http://semiletov.org/tea-releases/$TARBALL"
12 DEPENDS="xorg-libX11 libQtCore libQtXml libQtGui"
13 BUILD_DEPENDS="Qt4-dev qmake xorg-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 qmake PREFIX=/usr && make
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/bin $fs/usr/share/pixmaps
26 cp -a $src/bin/tea $fs/usr/bin
27 cp -a $src/icons/tea_icon_v2.png \
28 $fs/usr/share/pixmaps/tea.png
29 }