wok annotate joe/receipt @ rev 20257

Add giflossy
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 13 23:27:32 2018 +0100 (2018-03-13)
parents 8abb017ed841
children 215a6ab0a079
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"
al@17501 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"
al@17501 12 TAGS="text-editor"
pankso@16060 13 HOST_ARCH="i486 arm"
pankso@9789 14
pankso@16060 15 DEPENDS="ncursesw"
pankso@16060 16 BUILD_DEPENDS="ncursesw-dev"
pankso@9789 17
pankso@9789 18 # Rules to configure and make the package.
pankso@9789 19 compile_rules()
pankso@9789 20 {
slaxemulator@10978 21 ./configure --sysconfdir=/etc \
slaxemulator@10978 22 $CONFIGURE_ARGS &&
pankso@9789 23 make && make install
pankso@9789 24 }
pankso@9789 25
pankso@9789 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@9789 27 genpkg_rules()
pankso@9789 28 {
pankso@16060 29 mkdir -p $fs/usr/share
pankso@16060 30 cp -a $install/etc $fs
pascal@15003 31 cp -a $install/usr/bin $fs/usr
pascal@15003 32 cp -a $install/usr/share/joe $fs/usr/share
pankso@9789 33 }