wok rev 35

Add : bastet, dialog, ninvaders
author Christophe Lincoln <pankso@slitaz.org>
date Tue Dec 18 14:08:58 2007 +0100 (2007-12-18)
parents 96142343fd1b
children ec1c67fbb4f8
files bastet/receipt dialog/receipt dialog/stuff/dialogrc ninvaders/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/bastet/receipt	Tue Dec 18 14:08:58 2007 +0100
     1.3 @@ -0,0 +1,28 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="bastet"
     1.7 +VERSION="0.41"
     1.8 +CATEGORY="base-apps"
     1.9 +SHORT_DESC="Bastard tetris clone."
    1.10 +MAINTAINER="pankso@slitaz.org"
    1.11 +DEPENDS="ncurses"
    1.12 +TARBALL="$PACKAGE-$VERSION.tgz"
    1.13 +WEB_SITE="http://fph.altervista.org/prog/bastet.shtml"
    1.14 +WGET_URL="http://fph.altervista.org/prog/bastet-0.41.tgz"
    1.15 +
    1.16 +# Rules to configure and make the package.
    1.17 +compile_rules()
    1.18 +{
    1.19 +	cd $src
    1.20 +	make
    1.21 +	strip bastet
    1.22 +}
    1.23 +
    1.24 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.25 +genpkg_rules()
    1.26 +{
    1.27 +	mkdir -p $fs/usr/games $fs/var/games
    1.28 +	cp -a $src/bastet $fs/usr/games
    1.29 +	touch $fs/var/games/bastet.scores
    1.30 +	chmod 666 $fs/var/games/bastet.scores
    1.31 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/dialog/receipt	Tue Dec 18 14:08:58 2007 +0100
     2.3 @@ -0,0 +1,33 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="dialog"
     2.7 +VERSION="1.1-20070930"
     2.8 +CATEGORY="base-apps"
     2.9 +SHORT_DESC="Script-interpreter which provides a set of curses widgets."
    2.10 +MAINTAINER="pankso@slitaz.org"
    2.11 +DEPENDS="ncurses"
    2.12 +TARBALL="$PACKAGE.tar.gz"
    2.13 +WEB_SITE="http://invisible-island.net/dialog/"
    2.14 +WGET_URL="ftp://invisible-island.net/dialog/dialog.tar.gz"
    2.15 +
    2.16 +# Rules to configure and make the package.
    2.17 +compile_rules()
    2.18 +{
    2.19 +	cd $src
    2.20 +	./configure --enable-nls --prefix=/usr \
    2.21 +	--sysconfdir=/etc --mandir=/usr/share/man \
    2.22 +	$CONFIGURE_ARGS
    2.23 +	make
    2.24 +	make DESTDIR=$PWD/_pkg install
    2.25 +}
    2.26 +
    2.27 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.28 +genpkg_rules()
    2.29 +{
    2.30 +	mkdir -p $fs/usr/share/locale $fs/etc
    2.31 +	cp -a $_pkg/usr/bin $fs/usr
    2.32 +	cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
    2.33 +	strip -s $fs/usr/bin/*
    2.34 +	# Config file.
    2.35 +	cp stuff/dialogrc $fs/etc
    2.36 +}
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/dialog/stuff/dialogrc	Tue Dec 18 14:08:58 2007 +0100
     3.3 @@ -0,0 +1,112 @@
     3.4 +# Run-time configuration file for dialog, on SliTaz GNU/Linux.
     3.5 +# $id: 20/01/2007 17:33:16 root@slitaz $
     3.6 +# Types of values:
     3.7 +#
     3.8 +# Number     -  <number>
     3.9 +# String     -  "string"
    3.10 +# Boolean    -  <ON|OFF>
    3.11 +# Attribute  -  (foreground,background,highlight?)
    3.12 +#
    3.13 +
    3.14 +
    3.15 +# Shadow dialog boxes? This also turns on color.
    3.16 +use_shadow = ON
    3.17 +
    3.18 +# Turn color support ON or OFF
    3.19 +use_colors = ON
    3.20 +
    3.21 +# Screen color
    3.22 +screen_color = (WHITE,BLACK,OFF)
    3.23 +
    3.24 +# Shadow color
    3.25 +shadow_color = (WHITE,BLACK,OFF)
    3.26 +
    3.27 +# Dialog box color
    3.28 +dialog_color = (WHITE,BLACK,OFF)
    3.29 +
    3.30 +# Dialog box title color
    3.31 +title_color = (YELLOW,BLACK,ON)
    3.32 +
    3.33 +# Dialog box border color
    3.34 +border_color = (YELLOW,BLACK,OFF)
    3.35 +
    3.36 +# Active button color
    3.37 +button_active_color = (WHITE,BLUE,ON)
    3.38 +
    3.39 +# Inactive button color
    3.40 +button_inactive_color = (WHITE,BLACK,OFF)
    3.41 +
    3.42 +# Active button key color
    3.43 +button_key_active_color = (WHITE,BLUE,ON)
    3.44 +
    3.45 +# Inactive button key color
    3.46 +button_key_inactive_color = (MAGENTA,BLACK,ON)
    3.47 +
    3.48 +# Active button label color
    3.49 +button_label_active_color = (WHITE,BLUE,ON)
    3.50 +
    3.51 +# Inactive button label color
    3.52 +button_label_inactive_color = (WHITE,BLACK,ON)
    3.53 +
    3.54 +# Input box color
    3.55 +inputbox_color = (BLUE,WHITE,ON)
    3.56 +
    3.57 +# Input box border color
    3.58 +inputbox_border_color = (BLACK,BLACK,ON)
    3.59 +
    3.60 +# Search box color
    3.61 +searchbox_color = (YELLOW,WHITE,ON)
    3.62 +
    3.63 +# Search box title color
    3.64 +searchbox_title_color = (WHITE,WHITE,ON)
    3.65 +
    3.66 +# Search box border color
    3.67 +searchbox_border_color = (RED,WHITE,ON)
    3.68 +
    3.69 +# File position indicator color
    3.70 +position_indicator_color = (YELLOW,BLACK,ON)
    3.71 +
    3.72 +# Menu box color
    3.73 +menubox_color = (GREEN,BLACK,ON)
    3.74 +
    3.75 +# Menu box border color
    3.76 +menubox_border_color = (BLACK,BLACK,ON)
    3.77 +
    3.78 +# Item color
    3.79 +item_color = (GREEN,BLACK,ON)
    3.80 +
    3.81 +# Selected item color
    3.82 +item_selected_color = (MAGENTA,BLACK,ON)
    3.83 +
    3.84 +# Tag color
    3.85 +tag_color = (YELLOW,BLACK,ON)
    3.86 +
    3.87 +# Selected tag color
    3.88 +tag_selected_color = (WHITE,BLUE,ON)
    3.89 +
    3.90 +# Tag key color
    3.91 +tag_key_color = (MAGENTA,BLACK,ON)
    3.92 +
    3.93 +# Selected tag key color
    3.94 +tag_key_selected_color = (GREEN,BLUE,ON)
    3.95 +
    3.96 +# Check box color
    3.97 +check_color = (MAGENTA,BLACK,ON)
    3.98 +
    3.99 +# Selected check box color
   3.100 +check_selected_color = (WHITE,MAGENTA,ON)
   3.101 +
   3.102 +# Up arrow color
   3.103 +uarrow_color = (GREEN,BLUE,ON)
   3.104 +
   3.105 +# Down arrow color
   3.106 +darrow_color = (GREEN,BLUE,ON)
   3.107 +
   3.108 +# Item help-text color
   3.109 +itemhelp_color = (RED,BLACK,ON)
   3.110 +
   3.111 +# Active form text color
   3.112 +form_active_text_color = (WHITE,BLUE,ON)
   3.113 +
   3.114 +# Form text color
   3.115 +form_text_color = (WHITE,MAGENTA,ON)
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/ninvaders/receipt	Tue Dec 18 14:08:58 2007 +0100
     4.3 @@ -0,0 +1,26 @@
     4.4 +# SliTaz package receipt.
     4.5 +
     4.6 +PACKAGE="ninvaders"
     4.7 +VERSION="0.1.1"
     4.8 +CATEGORY="base-apps"
     4.9 +SHORT_DESC="Space Invaders clone."
    4.10 +MAINTAINER="pankso@slitaz.org"
    4.11 +DEPENDS="ncurses"
    4.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    4.13 +WEB_SITE="http://ninvaders.sourceforge.net/"
    4.14 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    4.15 +
    4.16 +# Rules to configure and make the package.
    4.17 +compile_rules()
    4.18 +{
    4.19 +	cd $src
    4.20 +	make
    4.21 +	strip nInvaders
    4.22 +}
    4.23 +
    4.24 +# Rules to gen a SliTaz package suitable for Tazpkg.
    4.25 +genpkg_rules()
    4.26 +{
    4.27 +	mkdir -p $fs/usr/games
    4.28 +	cp -a $src/nInvaders $fs/usr/games
    4.29 +}