wok view joe/receipt @ rev 16177

8086tiny: nasm is native, do not use it
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 30 16:34:03 2014 +0000 (2014-03-30)
parents 02efefc5d9de
children 5d53e8ccbc8d
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 HOST_ARCH="i486 arm"
14 DEPENDS="ncursesw"
15 BUILD_DEPENDS="ncursesw-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
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/usr/share
29 cp -a $install/etc $fs
30 cp -a $install/usr/bin $fs/usr
31 cp -a $install/usr/share/joe $fs/usr/share
32 }