wok rev 21150
updated libbsd and libbsd-dev (0.6.0 -> 0.9.1)
author | Hans-G?nter Theisgen |
---|---|
date | Sat Mar 30 10:57:18 2019 +0100 (2019-03-30) |
parents | 754c91ee3cea |
children | 9ce16a41ce31 |
files | libbsd-dev/receipt libbsd/receipt |
line diff
1.1 --- a/libbsd-dev/receipt Sat Mar 30 10:43:29 2019 +0100 1.2 +++ b/libbsd-dev/receipt Sat Mar 30 10:57:18 2019 +0100 1.3 @@ -1,22 +1,24 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libbsd-dev" 1.7 -VERSION="0.6.0" 1.8 +VERSION="0.9.1" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Development files for libbsd." 1.11 MAINTAINER="claudinei@slitaz.org" 1.12 LICENSE="BSD MIT" 1.13 WEB_SITE="https://libbsd.freedesktop.org/wiki/" 1.14 -HOST_ARCH="i486 arm" 1.15 1.16 WANTED="libbsd" 1.17 DEPENDS="libbsd pkg-config" 1.18 1.19 +HOST_ARCH="i486 arm" 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/lib/*.*a $fs/usr/lib 1.26 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.27 - cp -a $install/usr/include $fs/usr 1.28 + 1.29 + cp -a $install/usr/lib/*.*a $fs/usr/lib 1.30 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.31 + cp -a $install/usr/include $fs/usr 1.32 }
2.1 --- a/libbsd/receipt Sat Mar 30 10:43:29 2019 +0100 2.2 +++ b/libbsd/receipt Sat Mar 30 10:57:18 2019 +0100 2.3 @@ -1,20 +1,24 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="libbsd" 2.7 -VERSION="0.6.0" 2.8 +VERSION="0.9.1" 2.9 CATEGORY="development" 2.10 SHORT_DESC="Provides useful functions commonly found on BSD systems." 2.11 MAINTAINER="claudinei@slitaz.org" 2.12 LICENSE="BSD MIT" 2.13 WEB_SITE="https://libbsd.freedesktop.org/wiki/" 2.14 + 2.15 TARBALL="$PACKAGE-$VERSION.tar.xz" 2.16 WGET_URL="https://libbsd.freedesktop.org/releases/$TARBALL" 2.17 + 2.18 HOST_ARCH="i486 arm" 2.19 2.20 # Rules to configure and make the package. 2.21 compile_rules() 2.22 { 2.23 - ./configure $CONFIGURE_ARGS && make && make install 2.24 + ./configure $CONFIGURE_ARGS && 2.25 + make -j 1 && 2.26 + make install 2.27 } 2.28 2.29 # Rules to gen a SliTaz package suitable for Tazpkg.