# HG changeset patch # User Hans-G?nter Theisgen # Date 1554130662 -3600 # Node ID 80675e0f496c00b1028c4d6e0e22b1419a72e226 # Parent 6acb254361577f7cdfbcccf2aaf8f3d487dde9b6 updated libedit and libedit-dev (3.0 -> 3.1) diff -r 6acb25436157 -r 80675e0f496c libedit-dev/receipt --- a/libedit-dev/receipt Mon Apr 01 15:40:03 2019 +0100 +++ b/libedit-dev/receipt Mon Apr 01 15:57:42 2019 +0100 @@ -1,22 +1,23 @@ # SliTaz package receipt. PACKAGE="libedit-dev" -VERSION="3.0" +VERSION="3.1" CATEGORY="development" -SHORT_DESC="Berkeley-style licensed command line editor library devel files" +SHORT_DESC="Berkeley-style licensed command line editor library - development files." MAINTAINER="domcox@slitaz.org" LICENSE="BSD" -WEB_SITE="http://www.thrysoee.dk/editline/" -SOURCE="libedit-20100424" +WEB_SITE="https://www.thrysoee.dk/editline/" + +SOURCE="libedit-20190324" WANTED="libedit" - DEPENDS="pkg-config" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr $fs/usr/lib - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib + + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib } diff -r 6acb25436157 -r 80675e0f496c libedit/receipt --- a/libedit/receipt Mon Apr 01 15:40:03 2019 +0100 +++ b/libedit/receipt Mon Apr 01 15:57:42 2019 +0100 @@ -1,29 +1,30 @@ # SliTaz package receipt. PACKAGE="libedit" -VERSION="3.0" +VERSION="3.1" CATEGORY="misc" -SHORT_DESC="Berkeley-style licensed command line editor library" +TAGS="cli editor library" +SHORT_DESC="Berkeley-style licensed command line editor library." MAINTAINER="domcox@slitaz.org" LICENSE="BSD" -SOURCE="libedit-20100424" +WEB_SITE="https://www.thrysoee.dk/editline/" + +SOURCE="libedit-20190324" TARBALL="$SOURCE-$VERSION.tar.gz" -WEB_SITE="http://www.thrysoee.dk/editline/" -WGET_URL="http://www.thrysoee.dk/editline/$TARBALL" -TAGS="cli editor library" +WGET_URL="$WEB_SITE$TARBALL" -BUILD_DEPENDS="gettext" +BUILD_DEPENDS="gettext ncurses-dev" # Rules to configure and make the package. compile_rules() { export LDFLAGS="$LDFLAGS -ltinfo" - ./configure \ - --prefix=/usr \ - --mandir=/usr/share/man \ - --enable-widec \ - $CONFIGURE_ARGS \ - && make + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --enable-widec \ + $CONFIGURE_ARGS && + make -j 1 && make DESTDIR=$DESTDIR install }