wok rev 21172
updated libedit and libedit-dev (3.0 -> 3.1)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Apr 01 15:57:42 2019 +0100 (2019-04-01) |
parents | 6acb25436157 |
children | 2ef718547108 |
files | libedit-dev/receipt libedit/receipt |
line diff
1.1 --- a/libedit-dev/receipt Mon Apr 01 15:40:03 2019 +0100 1.2 +++ b/libedit-dev/receipt Mon Apr 01 15:57:42 2019 +0100 1.3 @@ -1,22 +1,23 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libedit-dev" 1.7 -VERSION="3.0" 1.8 +VERSION="3.1" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="Berkeley-style licensed command line editor library devel files" 1.11 +SHORT_DESC="Berkeley-style licensed command line editor library - development files." 1.12 MAINTAINER="domcox@slitaz.org" 1.13 LICENSE="BSD" 1.14 -WEB_SITE="http://www.thrysoee.dk/editline/" 1.15 -SOURCE="libedit-20100424" 1.16 +WEB_SITE="https://www.thrysoee.dk/editline/" 1.17 + 1.18 +SOURCE="libedit-20190324" 1.19 WANTED="libedit" 1.20 - 1.21 DEPENDS="pkg-config" 1.22 1.23 # Rules to gen a SliTaz package suitable for Tazpkg. 1.24 genpkg_rules() 1.25 { 1.26 mkdir -p $fs/usr $fs/usr/lib 1.27 - cp -a $install/usr/include $fs/usr 1.28 - cp -a $install/usr/lib/*a $fs/usr/lib 1.29 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.30 + 1.31 + cp -a $install/usr/include $fs/usr 1.32 + cp -a $install/usr/lib/*a $fs/usr/lib 1.33 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.34 }
2.1 --- a/libedit/receipt Mon Apr 01 15:40:03 2019 +0100 2.2 +++ b/libedit/receipt Mon Apr 01 15:57:42 2019 +0100 2.3 @@ -1,29 +1,30 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="libedit" 2.7 -VERSION="3.0" 2.8 +VERSION="3.1" 2.9 CATEGORY="misc" 2.10 -SHORT_DESC="Berkeley-style licensed command line editor library" 2.11 +TAGS="cli editor library" 2.12 +SHORT_DESC="Berkeley-style licensed command line editor library." 2.13 MAINTAINER="domcox@slitaz.org" 2.14 LICENSE="BSD" 2.15 -SOURCE="libedit-20100424" 2.16 +WEB_SITE="https://www.thrysoee.dk/editline/" 2.17 + 2.18 +SOURCE="libedit-20190324" 2.19 TARBALL="$SOURCE-$VERSION.tar.gz" 2.20 -WEB_SITE="http://www.thrysoee.dk/editline/" 2.21 -WGET_URL="http://www.thrysoee.dk/editline/$TARBALL" 2.22 -TAGS="cli editor library" 2.23 +WGET_URL="$WEB_SITE$TARBALL" 2.24 2.25 -BUILD_DEPENDS="gettext" 2.26 +BUILD_DEPENDS="gettext ncurses-dev" 2.27 2.28 # Rules to configure and make the package. 2.29 compile_rules() 2.30 { 2.31 export LDFLAGS="$LDFLAGS -ltinfo" 2.32 - ./configure \ 2.33 - --prefix=/usr \ 2.34 - --mandir=/usr/share/man \ 2.35 - --enable-widec \ 2.36 - $CONFIGURE_ARGS \ 2.37 - && make 2.38 + ./configure \ 2.39 + --prefix=/usr \ 2.40 + --mandir=/usr/share/man \ 2.41 + --enable-widec \ 2.42 + $CONFIGURE_ARGS && 2.43 + make -j 1 && 2.44 make DESTDIR=$DESTDIR install 2.45 } 2.46