wok-current rev 21938
updated dotconf and dotconf-dev (1.0.13 -> 1.3)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Oct 08 10:43:42 2019 +0100 (2019-10-08) |
parents | 0a375ada0633 |
children | 75b0b61c5994 |
files | dotconf-dev/receipt dotconf/receipt |
line diff
1.1 --- a/dotconf-dev/receipt Mon Oct 07 18:30:01 2019 +0200 1.2 +++ b/dotconf-dev/receipt Tue Oct 08 10:43:42 2019 +0100 1.3 @@ -1,22 +1,22 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="dotconf-dev" 1.7 -VERSION="1.0.13" 1.8 +VERSION="1.3" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="Configuration file parser devel library." 1.11 +SHORT_DESC="Configuration file parser library - development files." 1.12 MAINTAINER="paul@slitaz.org" 1.13 LICENSE="LGPL2.1" 1.14 -WANTED="dotconf" 1.15 -WEB_SITE="https://github.com/williamh/dotconf" 1.16 +WEB_SITE="https://github.com/williamh/dotconf/" 1.17 1.18 DEPENDS="pkg-config" 1.19 +WANTED="dotconf" 1.20 1.21 # Rules to gen a SliTaz package suitable for Tazpkg. 1.22 genpkg_rules() 1.23 { 1.24 mkdir -p $fs/usr/lib 1.25 - cp -a $install/usr/include $fs/usr 1.26 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.27 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.28 + 1.29 + cp -a $install/usr/include $fs/usr 1.30 + cp -a $install/usr/lib/*.*a $fs/usr/lib 1.31 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.32 } 1.33 -
2.1 --- a/dotconf/receipt Mon Oct 07 18:30:01 2019 +0200 2.2 +++ b/dotconf/receipt Tue Oct 08 10:43:42 2019 +0100 2.3 @@ -1,33 +1,38 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="dotconf" 2.7 -VERSION="1.0.13" 2.8 +VERSION="1.3" 2.9 CATEGORY="development" 2.10 SHORT_DESC="Configuration file parser library." 2.11 MAINTAINER="paul@slitaz.org" 2.12 LICENSE="LGPL2.1" 2.13 +WEB_SITE="https://github.com/williamh/dotconf/" 2.14 + 2.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.16 -WEB_SITE="https://github.com/williamh/dotconf" 2.17 -WGET_URL="http://www.azzit.de/dotconf/download/v${VERSION%.*}/$TARBALL" 2.18 +WGET_URL="$[WEB_SITE}archive/v${VERSION%}/$TARBALL" 2.19 2.20 DEPENDS="" 2.21 +BUILD_DEPENDS="automake" 2.22 2.23 # Rules to configure and make the package. 2.24 compile_rules() 2.25 { 2.26 - ./configure \ 2.27 - --prefix=/usr \ 2.28 - --infodir=/usr/share/info \ 2.29 - --mandir=/usr/share/man \ 2.30 + autoreconf --install && 2.31 + ./configure \ 2.32 + --prefix=/usr \ 2.33 + --infodir=/usr/share/info \ 2.34 + --mandir=/usr/share/man \ 2.35 $CONFIGURE_ARGS && 2.36 - make && make DESTDIR=$DESTDIR install 2.37 + make && 2.38 + make DESTDIR=$DESTDIR install 2.39 } 2.40 2.41 # Rules to gen a SliTaz package suitable for Tazpkg. 2.42 genpkg_rules() 2.43 { 2.44 mkdir -p $fs/usr/lib 2.45 - cp -a $install/usr/bin $fs/usr 2.46 - cp -a $install/usr/lib/*.so* $fs/usr/lib 2.47 - cp -a $install/usr/share $fs/usr 2.48 + 2.49 + cp -a $install/usr/bin $fs/usr 2.50 + cp -a $install/usr/lib/*.so* $fs/usr/lib 2.51 + cp -a $install/usr/share $fs/usr 2.52 }