wok rev 9789

Add: joe (text editor) - Package made by Daniele Guerrieri
author Christophe Lincoln <pankso@slitaz.org>
date Fri May 13 13:32:39 2011 +0200 (2011-05-13)
parents 7417fe0fa042
children d3f73e8aa584
files joe/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/joe/receipt	Fri May 13 13:32:39 2011 +0200
     1.3 @@ -0,0 +1,30 @@
     1.4 +#Slitaz package receipt
     1.5 +
     1.6 +PACKAGE="joe"
     1.7 +VERSION="3.7"
     1.8 +CATEGORY="utilities"
     1.9 +SHORT_DESC="Joe's Own editor is a fully featured terminal based screen editor"
    1.10 +MANTAINER="threarth@yahoo.it"
    1.11 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.12 +WEB_SITE="http://joe-editor.sourceforge.net/"
    1.13 +WGET_URL="http://downloads.sourceforge.net/project/joe-editor/JOE%20sources/$PACKAGE-$VERSION/$PACKAGE-$VERSION.tar.gz"
    1.14 +
    1.15 +DEPENDS="ncurses"
    1.16 +BUILD_DEPENDS="ncurses-dev"
    1.17 +
    1.18 +# Rules to configure and make the package.
    1.19 +compile_rules()
    1.20 +{
    1.21 +	cd $src
    1.22 +	./configure --sysconfdir=/etc &&
    1.23 +	make && make install
    1.24 +}
    1.25 +
    1.26 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.27 +genpkg_rules()
    1.28 +{
    1.29 +	mkdir -p $fs/etc/joe $fs/usr/share
    1.30 +	cp -a $_pkg/usr/bin $fs/usr
    1.31 +	cp -a $_pkg/etc/ $fs
    1.32 +	cp -a $_pkg/usr/share/joe $fs/usr/share 
    1.33 +}