wok-stable diff joe/receipt @ rev 10855
linux: Add ts_* modules. linux-input-touchscreen had ts_* modules in it. Only adds 4kb to linux packages.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Tue Jun 14 11:41:17 2011 +0000 (2011-06-14) |
parents | |
children | 1521467452aa |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/joe/receipt Tue Jun 14 11:41:17 2011 +0000 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 +}