wok view tea/receipt @ rev 15201

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Sep 07 18:25:02 2013 +0000 (2013-09-07)
parents 2b9f96603415
children 5d53e8ccbc8d
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"
13 DEPENDS="xorg-libX11 libQtCore libQtXml libQtGui"
14 BUILD_DEPENDS="Qt4-dev qmake xorg-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 qmake PREFIX=/usr && make
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/bin $fs/usr/share/pixmaps
27 cp -a $src/bin/tea $fs/usr/bin
28 cp -a $src/icons/tea_icon_v2.png \
29 $fs/usr/share/pixmaps/tea.png
30 }