wok view vym/receipt @ rev 5324

get-prince: remove binutils depends
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Apr 22 20:37:31 2010 +0200 (2010-04-22)
parents
children 591344cc8bf8
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"
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 mkdir -p $PWD/_pkg/usr/share/applications
23 cp -f ../stuff/vym.desktop $PWD/_pkg/usr/share/applications
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/share/icons/hicolor/48x48/apps
30 cp -a $_pkg/usr/bin $fs/usr
31 cp -a $_pkg/usr/share $fs/usr
32 cp $_pkg/usr/share/vym/icons/vym.png $fs/usr/share/icons/hicolor/48x48/apps/
33 rm -rf $fs/usr/share/vym/lang
34 }