# HG changeset patch # User Pascal Bellard # Date 1209758617 0 # Node ID 5783ca11f6cef763694390b600f3b0cdd78b0ead # Parent 3b28813680899974097345ece9639827d5d0377e Add: conspy, a poor man's GNU/screen for 10k diff -r 3b2881368089 -r 5783ca11f6ce conspy/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/conspy/receipt Fri May 02 20:03:37 2008 +0000 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="conspy" +VERSION="1.5" +CATEGORY="system-tools" +SHORT_DESC="Remote control of Linux virtual consoles." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://ace-host.stuart.id.au/russell/files/$PACKAGE/" +WGET_URL="${WEB_SITE}$TARBALL" +DEPENDS="ncurses" +BUILD_DEPENDS="ncurses-dev" + +# 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 + cp -a $_pkg/usr/bin $fs/usr +} +