wok-next view zim/receipt @ rev 10721

postfix: Fixed uid for postdrop group and postfix user. We should use uid 75 for postfix user and uid 73 for postdrop. Postdrop group was seting itself to 1000 uid before.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat May 28 18:20:04 2011 +0000 (2011-05-28)
parents 8bf3f5f3482b
children 90eda8e742d9
line source
1 # SliTaz package receipt.
3 PACKAGE="zim"
4 VERSION="0.52"
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 }