wok annotate joe/receipt @ rev 15714

Add util-linux-eject
author Richard Dunbar <mojo@slitaz.org>
date Tue Dec 24 22:10:59 2013 +0000 (2013-12-24)
parents 36a438c097dc
children 8abb017ed841
rev   line source
pankso@9789 1 #Slitaz package receipt
pankso@9789 2
pankso@9789 3 PACKAGE="joe"
pankso@9789 4 VERSION="3.7"
pankso@9789 5 CATEGORY="utilities"
pankso@9789 6 SHORT_DESC="Joe's Own editor is a fully featured terminal based screen editor"
pascal@13024 7 MAINTAINER="threarth@yahoo.it"
pascal@15003 8 LICENSE="GPL"
pankso@9789 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@9789 10 WEB_SITE="http://joe-editor.sourceforge.net/"
pankso@9789 11 WGET_URL="http://downloads.sourceforge.net/project/joe-editor/JOE%20sources/$PACKAGE-$VERSION/$PACKAGE-$VERSION.tar.gz"
pankso@9789 12
pankso@9789 13 DEPENDS="ncurses"
pankso@9789 14 BUILD_DEPENDS="ncurses-dev"
pankso@9789 15
pankso@9789 16 # Rules to configure and make the package.
pankso@9789 17 compile_rules()
pankso@9789 18 {
pankso@9789 19 cd $src
slaxemulator@10978 20 ./configure --sysconfdir=/etc \
slaxemulator@10978 21 $CONFIGURE_ARGS &&
pankso@9789 22 make && make install
pankso@9789 23 }
pankso@9789 24
pankso@9789 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@9789 26 genpkg_rules()
pankso@9789 27 {
pankso@9789 28 mkdir -p $fs/etc/joe $fs/usr/share
pascal@15003 29 cp -a $install/usr/bin $fs/usr
pascal@15003 30 cp -a $install/etc/ $fs
pascal@15003 31 cp -a $install/usr/share/joe $fs/usr/share
pankso@9789 32 }