# HG changeset patch # User Christophe Lincoln # Date 1197555512 -3600 # Node ID 2074fdf6033a6dece8635373302ca8467ee44552 # Parent 5a6cb7128cbe369f151c2be8a16bbbc52a677a4e Add : ncurses + clex, htop, rhapsody diff -r 5a6cb7128cbe -r 2074fdf6033a clex/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/clex/receipt Thu Dec 13 15:18:32 2007 +0100 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="clex" +VERSION="3.17" +CATEGORY="base-apps" +SHORT_DESC="Text mode file manager." +MAINTAINER="pankso@slitaz.org" +DEPENDS="ncurses" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.clex.sk/" +WGET_URL="http://www.clex.sk/download/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr --infodir=/usr/share/info \ + --mandir=/usr/share/man $CONFIGURE_ARGS + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin + cp -a $_pkg/usr/bin/* $fs/usr/bin + strip -s $fs/usr/bin/* +} diff -r 5a6cb7128cbe -r 2074fdf6033a htop/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/htop/receipt Thu Dec 13 15:18:32 2007 +0100 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="htop" +VERSION="0.6.6" +CATEGORY="base-apps" +SHORT_DESC="Interactive process viewer." +MAINTAINER="pankso@slitaz.org" +DEPENDS="ncurses" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://htop.sourceforge.net/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr --mandir=/usr/share/man $CONFIGURE_ARGS + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin $fs/usr/share + cp -a $_pkg/usr/bin/* $fs/usr/bin + cp -a $_pkg/usr/share/pixmaps $fs/usr/share + strip -s $fs/usr/bin/* +} diff -r 5a6cb7128cbe -r 2074fdf6033a ncurses/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ncurses/receipt Thu Dec 13 15:18:32 2007 +0100 @@ -0,0 +1,66 @@ +# SliTaz package receipt. + +PACKAGE="ncurses" +VERSION="5.6" +CATEGORY="base-apps" +SHORT_DESC="Library of functions to manage display on teminals." +MAINTAINER="pankso@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://invisible-island.net/ncurses/" +WGET_URL="ftp://invisible-island.net/ncurses/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $PACKAGE-$VERSION + ./configure --prefix=/usr \ + --libdir=/lib --sysconfdir=/etc \ + --infodir=/usr/share/info --mandir=/usr/share/man \ + --with-shared --without-debug --without-ada \ + $CONFIGURE_ARGS + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/lib $fs/usr/bin + + # Libs. + cp -a $_pkg/lib/libncurses.so* $fs/lib + strip --strip-unneeded $fs/lib/*.so* + + # Base progs. + cp $_pkg/usr/bin/clear $fs/usr/bin + cp $_pkg/usr/bin/tset $fs/usr/bin + cp $_pkg/usr/bin/reset $fs/usr/bin + + # Terminfo. + mkdir -p $fs/usr/share/terminfo + for dir in a l r v x + do + mkdir $fs/usr/share/terminfo/$dir + done + cp $_pkg/usr/share/terminfo/a/ansi \ + $fs/usr/share/terminfo/a + cp $_pkg/usr/share/terminfo/l/linux \ + $fs/usr/share/terminfo/l + cp $_pkg/usr/share/terminfo/r/rxvt \ + $fs/usr/share/terminfo/r + cp $_pkg/usr/share/terminfo/x/xterm \ + $fs/usr/share/terminfo/x + cp $_pkg/usr/share/terminfo/x/xterm-color \ + $fs/usr/share/terminfo/x + cp $_pkg/usr/share/terminfo/x/xterm-new \ + $fs/usr/share/terminfo/x + cp $_pkg/usr/share/terminfo/x/xterm-vt220 \ + $fs/usr/share/terminfo/x + cp $_pkg/usr/share/terminfo/v/vt100 \ + $fs/usr/share/terminfo/v + cp $_pkg/usr/share/terminfo/v/vt102* \ + $fs/usr/share/terminfo/v + + # Tabset. + cp -a $_pkg/usr/share/tabset $fs/usr/share +} diff -r 5a6cb7128cbe -r 2074fdf6033a rhapsody/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/rhapsody/receipt Thu Dec 13 15:18:32 2007 +0100 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="rhapsody" +VERSION="0.28b" +CATEGORY="base-apps" +SHORT_DESC="Text mode and easy to use IRC client." +MAINTAINER="pankso@slitaz.org" +TARBALL="rhapsody_0.28b.tgz" +WEB_SITE="http://rhapsody.sourceforge.net/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure -i /usr/bin -d /usr/share/doc/rhapsody + make clean + make + strip -v rhapsody +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin + cp -a $src/rhapsody $fs/usr/bin + # Doc stuff. + mkdir -p $fs/usr/share/doc/rhapsody + cp -a $src/help $fs/usr/share/doc/rhapsody + chmod 644 $fs/usr/share/doc/rhapsody/help/* +}