wok view tea/receipt @ rev 18106

Up pam (1.2.0)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jun 01 11:31:30 2015 +0200 (2015-06-01)
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 }