# HG changeset patch # User Christophe Lincoln # Date 1394582076 -3600 # Node ID 8abb017ed8412912046ce26409af034bb0b00a1e # Parent 4bc239bf6b69366bee6ea75a1d089a99feec3ce3 ARM: add zile and joe text editors (nano got regex bug on ARM) diff -r 4bc239bf6b69 -r 8abb017ed841 joe/receipt --- a/joe/receipt Tue Mar 11 23:30:55 2014 +0100 +++ b/joe/receipt Wed Mar 12 00:54:36 2014 +0100 @@ -9,14 +9,14 @@ TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://joe-editor.sourceforge.net/" WGET_URL="http://downloads.sourceforge.net/project/joe-editor/JOE%20sources/$PACKAGE-$VERSION/$PACKAGE-$VERSION.tar.gz" +HOST_ARCH="i486 arm" -DEPENDS="ncurses" -BUILD_DEPENDS="ncurses-dev" +DEPENDS="ncursesw" +BUILD_DEPENDS="ncursesw-dev" # Rules to configure and make the package. compile_rules() { - cd $src ./configure --sysconfdir=/etc \ $CONFIGURE_ARGS && make && make install @@ -25,8 +25,8 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/etc/joe $fs/usr/share + mkdir -p $fs/usr/share + cp -a $install/etc $fs cp -a $install/usr/bin $fs/usr - cp -a $install/etc/ $fs cp -a $install/usr/share/joe $fs/usr/share } diff -r 4bc239bf6b69 -r 8abb017ed841 zile/receipt --- a/zile/receipt Tue Mar 11 23:30:55 2014 +0100 +++ b/zile/receipt Wed Mar 12 00:54:36 2014 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="zile" -VERSION="2.3.21" +VERSION="2.3.24" CATEGORY="development" SHORT_DESC="GNU Zile is a lightweight Emacs clone." MAINTAINER="domcox@slitaz.org" @@ -10,20 +10,16 @@ WEB_SITE="http://www.gnu.org/software/zile/" WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" TAGS="text-editor" +HOST_ARCH="i486 arm" -DEPENDS="ncurses" -BUILD_DEPENDS="ncurses-dev" +DEPENDS="ncursesw" +BUILD_DEPENDS="ncursesw-dev" # Rules to configure and make the package. compile_rules() { - cd $src - ./configure \ - --prefix=/usr \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man \ - $CONFIGURE_ARGS && - make && make DESTDIR=$DESTDIR install + ./configure $CONFIGURE_ARGS && + make && make install } # Rules to gen a SliTaz package suitable for Tazpkg.