wok view zim/receipt @ rev 8739

neon: improve depends.
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sat Feb 19 21:46:48 2011 +0100 (2011-02-19)
parents af022550edde
children 52bbfb889d1e
line source
1 # SliTaz package receipt.
3 PACKAGE="zim"
4 VERSION="0.49"
5 CATEGORY="utilities"
6 SHORT_DESC="A desktop wiki."
7 MAINTAINER="gokhlayeh@slitaz.org"
8 DEPENDS="python pygtk pygobject python-simplejson python-xdg desktop-file-utils shared-mime-info xdg-utils"
9 BUILD_DEPENDS="$DEPENDS pycairo-dev pygobject-dev pygtk-dev python-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://zim-wiki.org/"
12 WGET_URL="http://zim-wiki.org/downloads/$TARBALL"
13 TAGS="wiki notebook"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./setup.py install --root=$PWD/_pkg install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr
26 cp -a $_pkg/usr $fs
27 }
29 post_install()
30 {
31 echo -n "Processing post-install commands..."
32 # Create mimeinfo.cache in /usr/share/applications
33 update-desktop-database
34 update-mime-database /usr/share/mime
35 xdg-icon-resource install --context mimetypes \
36 --size 64 /usr/share/pixmaps/zim.png application-x-zim-notebook
37 status
38 }