# HG changeset patch # User Hans-G?nter Theisgen # Date 1573813801 -3600 # Node ID ae6331238367e432f955e84c40ecf84e4a0eda4c # Parent 1b219c92423321caee21f89b95e233f269163d92 updated zile (2.3.24 -> 2.4.14) diff -r 1b219c924233 -r ae6331238367 zile/receipt --- a/zile/receipt Fri Nov 15 10:31:45 2019 +0100 +++ b/zile/receipt Fri Nov 15 11:30:01 2019 +0100 @@ -1,31 +1,35 @@ # SliTaz package receipt. PACKAGE="zile" -VERSION="2.3.24" +VERSION="2.4.14" CATEGORY="development" -SHORT_DESC="GNU Zile is a lightweight Emacs clone." +TAGS="text-editor" +SHORT_DESC="A lightweight Emacs clone." MAINTAINER="domcox@slitaz.org" LICENSE="GPL3" +WEB_SITE="https://www.gnu.org/software/zile/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://www.gnu.org/software/zile/" WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" -TAGS="text-editor" + +DEPENDS="gc glibc-base ncursesw" +BUILD_DEPENDS="gc-dev help2man ncursesw-dev" + HOST_ARCH="i486 arm" -DEPENDS="ncursesw" -BUILD_DEPENDS="ncursesw-dev" - # Rules to configure and make the package. compile_rules() { + export LDFLAGS="$LDFLAGS -lrt" + ./configure $CONFIGURE_ARGS && - make && make install + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr - cp -a $install/usr/bin $fs/usr + cp -a $install/usr/bin $fs/usr } -