wok view vym/receipt @ rev 12411

Up: slitaz-configs (5.0) Buch of new change and less deps (use lxde meta packages in flavors :-)
author Christophe Lincoln <pankso@slitaz.org>
date Fri Apr 20 18:14:53 2012 +0200 (2012-04-20)
parents 940b5937e496
children b0c60d808e5c
line source
1 # SliTaz package receipt.
3 PACKAGE="vym"
4 VERSION="1.12.7"
5 CATEGORY="utilities"
6 SHORT_DESC="A mindmapping tool"
7 MAINTAINER="rocky@slitaz.org"
8 DEPENDS="libQtCore libQtNetwork libQtXml libQtSql libQtGui libQt3Support zip"
9 BUILD_DEPENDS="qmake Qt4-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.insilmaril.de/vym/"
12 WGET_URL="$SF_MIRROR/vym/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 echo $src
19 qmake PREFIX=/usr &&
20 make &&
21 make INSTALL_ROOT=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/share/icons/hicolor/48x48/apps
28 cp -a $_pkg/usr/bin $fs/usr
29 cp -a $_pkg/usr/share $fs/usr
30 cp $_pkg/usr/share/vym/icons/vym.png $fs/usr/share/icons/hicolor/48x48/apps/
31 rm -rf $fs/usr/share/vym/lang
32 }