wok view tea/receipt @ rev 13753

xpad: try to fix build
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Jan 03 00:29:09 2013 +0000 (2013-01-03)
parents
children 68ec33732967
line source
1 # SliTaz package receipt.
3 PACKAGE="tea"
4 VERSION="32.0.1"
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.ho.ua/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 }