wok-next view sudoku/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 | 4abb57275e48 |
children | ff54c8e52d6b |
line source
1 # SliTaz package receipt.
3 PACKAGE="sudoku"
4 VERSION="2.2"
5 CATEGORY="games"
6 SHORT_DESC="Sudoku game in javascript"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.html"
9 WEB_SITE="http://10k.aneventapart.com/Entry/81"
10 WGET_URL="http://10k.aneventapart.com/Uploads/81/index.html"
12 # Rules to gen a SliTaz package suitable for Tazpkg.
13 genpkg_rules()
14 {
15 mkdir -p $fs/var/www/$PACKAGE $fs/usr/share/applications
16 cp $src/$TARBALL $fs/var/www/$PACKAGE/index.html
17 chown -R 80.80 $fs/var/www/$PACKAGE
18 cat > $fs/usr/share/applications/sudoku.desktop <<EOT
19 [Desktop Entry]
20 Type=Application
21 Name=Sudoku
22 Name[zh_CN]=数独
23 Exec=browser file:///var/www/sudoku/index.html
24 Icon=other.png
25 Terminal=false
26 Categories=Game;
27 Comment=Sudoku game
28 EOT
29 }