wok view zim/receipt @ rev 12017

Up zim 0.55
author Antoine Bodin <gokhlayeh@slitaz.org>
date Tue Mar 06 13:37:22 2012 +0100 (2012-03-06)
parents 1134b440b9b4
children 0a6b5118575a
line source
1 # SliTaz package receipt.
3 PACKAGE="zim"
4 VERSION="0.55"
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=$DESTDIR 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 }