wok view joe/receipt @ rev 15429

Up: thunderbird-langpack-zh_CN (17.0.9esr)
author Dominique Corbex <domcox@slitaz.org>
date Sun Nov 03 21:52:58 2013 +0100 (2013-11-03)
parents 36a438c097dc
children 8abb017ed841
line source
1 #Slitaz package receipt
3 PACKAGE="joe"
4 VERSION="3.7"
5 CATEGORY="utilities"
6 SHORT_DESC="Joe's Own editor is a fully featured terminal based screen editor"
7 MAINTAINER="threarth@yahoo.it"
8 LICENSE="GPL"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://joe-editor.sourceforge.net/"
11 WGET_URL="http://downloads.sourceforge.net/project/joe-editor/JOE%20sources/$PACKAGE-$VERSION/$PACKAGE-$VERSION.tar.gz"
13 DEPENDS="ncurses"
14 BUILD_DEPENDS="ncurses-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --sysconfdir=/etc \
21 $CONFIGURE_ARGS &&
22 make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/etc/joe $fs/usr/share
29 cp -a $install/usr/bin $fs/usr
30 cp -a $install/etc/ $fs
31 cp -a $install/usr/share/joe $fs/usr/share
32 }