# HG changeset patch # User Hans-G?nter Theisgen # Date 1553939838 -3600 # Node ID 71521ac1d60d488b3b6ba04f6a9f2ef2287178ff # Parent 754c91ee3cea0aed62610b5d1635613a843b7f97 updated libbsd and libbsd-dev (0.6.0 -> 0.9.1) diff -r 754c91ee3cea -r 71521ac1d60d libbsd-dev/receipt --- a/libbsd-dev/receipt Sat Mar 30 10:43:29 2019 +0100 +++ b/libbsd-dev/receipt Sat Mar 30 10:57:18 2019 +0100 @@ -1,22 +1,24 @@ # SliTaz package receipt. PACKAGE="libbsd-dev" -VERSION="0.6.0" +VERSION="0.9.1" CATEGORY="development" SHORT_DESC="Development files for libbsd." MAINTAINER="claudinei@slitaz.org" LICENSE="BSD MIT" WEB_SITE="https://libbsd.freedesktop.org/wiki/" -HOST_ARCH="i486 arm" WANTED="libbsd" DEPENDS="libbsd pkg-config" +HOST_ARCH="i486 arm" + # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - 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 + cp -a $install/usr/include $fs/usr } diff -r 754c91ee3cea -r 71521ac1d60d libbsd/receipt --- a/libbsd/receipt Sat Mar 30 10:43:29 2019 +0100 +++ b/libbsd/receipt Sat Mar 30 10:57:18 2019 +0100 @@ -1,20 +1,24 @@ # SliTaz package receipt. PACKAGE="libbsd" -VERSION="0.6.0" +VERSION="0.9.1" CATEGORY="development" SHORT_DESC="Provides useful functions commonly found on BSD systems." MAINTAINER="claudinei@slitaz.org" LICENSE="BSD MIT" WEB_SITE="https://libbsd.freedesktop.org/wiki/" + TARBALL="$PACKAGE-$VERSION.tar.xz" WGET_URL="https://libbsd.freedesktop.org/releases/$TARBALL" + HOST_ARCH="i486 arm" # Rules to configure and make the package. compile_rules() { - ./configure $CONFIGURE_ARGS && make && make install + ./configure $CONFIGURE_ARGS && + make -j 1 && + make install } # Rules to gen a SliTaz package suitable for Tazpkg.