wok-next diff joe/receipt @ rev 20574
More fix libtool
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Fri Apr 13 20:08:04 2018 +0300 (2018-04-13) |
parents | c4e53a39395a |
children | d5aab818505e |
line diff
1.1 --- a/joe/receipt Fri Mar 02 12:12:14 2018 +0200 1.2 +++ b/joe/receipt Fri Apr 13 20:08:04 2018 +0300 1.3 @@ -1,4 +1,4 @@ 1.4 -#Slitaz package receipt 1.5 +#Slitaz package receipt v2. 1.6 1.7 PACKAGE="joe" 1.8 VERSION="3.7" 1.9 @@ -6,27 +6,21 @@ 1.10 SHORT_DESC="Joe's Own Editor is a fully featured terminal based screen editor" 1.11 MAINTAINER="threarth@yahoo.it" 1.12 LICENSE="GPL" 1.13 +WEB_SITE="http://joe-editor.sourceforge.net/" 1.14 + 1.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.16 -WEB_SITE="http://joe-editor.sourceforge.net/" 1.17 -WGET_URL="http://downloads.sourceforge.net/project/joe-editor/JOE%20sources/$PACKAGE-$VERSION/$PACKAGE-$VERSION.tar.gz" 1.18 -TAGS="text-editor" 1.19 +WGET_URL="$SF_MIRROR/joe-editor/$TARBALL" 1.20 1.21 -DEPENDS="ncurses" 1.22 BUILD_DEPENDS="ncurses-dev" 1.23 1.24 -# Rules to configure and make the package. 1.25 -compile_rules() 1.26 -{ 1.27 - ./configure --sysconfdir=/etc \ 1.28 - $CONFIGURE_ARGS && 1.29 - make && make install 1.30 +compile_rules() { 1.31 + ./configure $CONFIGURE_ARGS && 1.32 + make && 1.33 + make install 1.34 } 1.35 1.36 -# Rules to gen a SliTaz package suitable for Tazpkg. 1.37 -genpkg_rules() 1.38 -{ 1.39 - mkdir -p $fs/usr/share 1.40 - cp -a $install/etc $fs 1.41 - cp -a $install/usr/bin $fs/usr 1.42 - cp -a $install/usr/share/joe $fs/usr/share 1.43 +genpkg_rules() { 1.44 + copy @std 1.45 + DEPENDS="ncurses" 1.46 + TAGS="text-editor" 1.47 }