wok-next view joe/receipt @ rev 20219

memtest: shrink
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Nov 05 13:03:25 2017 +0100 (2017-11-05)
parents 5d53e8ccbc8d
children c4e53a39395a
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"
12 TAGS="text-editor"
13 HOST_ARCH="i486 arm"
15 DEPENDS="ncurses"
16 BUILD_DEPENDS="ncurses-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure --sysconfdir=/etc \
22 $CONFIGURE_ARGS &&
23 make && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/share
30 cp -a $install/etc $fs
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/share/joe $fs/usr/share
33 }