wok view tea/receipt @ rev 13992

qt4 up to 4.8.4 - fixed some qt4 dependent package which does not build, upgrading only if necessary, tested razorqt and some apps, all seems to work
author ernia <monghitri@aruba.it>
date Mon Feb 11 23:39:16 2013 +0000 (2013-02-11)
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 }