wok diff libnl/receipt @ rev 22991
updated l3afpad (0.8.18.1.10 -> 0.8.18.1.11)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Mar 01 17:39:44 2020 +0100 (2020-03-01) |
parents | 8dd8bab3f0ca |
children | 98cf458f5c62 |
line diff
1.1 --- a/libnl/receipt Thu Jan 24 14:51:04 2019 +0100 1.2 +++ b/libnl/receipt Sun Mar 01 17:39:44 2020 +0100 1.3 @@ -1,14 +1,17 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libnl" 1.7 -VERSION="3.2.24" 1.8 +VERSION="3.4.0" 1.9 CATEGORY="network" 1.10 SHORT_DESC="netlink library." 1.11 MAINTAINER="pascal.bellard@slitaz.org" 1.12 LICENSE="LGPL2.1" 1.13 + 1.14 +WEB_SITE="http://www.infradead.org/~tgr/libnl/" 1.15 + 1.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.17 -WEB_SITE="http://www.infradead.org/~tgr/libnl/" 1.18 WGET_URL="$WEB_SITE/files/$TARBALL" 1.19 + 1.20 HOST_ARCH="i486 arm" 1.21 1.22 # Cross compile needs host flex 1.23 @@ -17,18 +20,21 @@ 1.24 # Rules to configure and make the package. 1.25 compile_rules() 1.26 { 1.27 - ./configure \ 1.28 - --sysconfdir=/etc \ 1.29 + ./configure \ 1.30 + --sysconfdir=/etc \ 1.31 $CONFIGURE_ARGS && 1.32 - make && make install 1.33 + make -j 1 && 1.34 + make install 1.35 } 1.36 1.37 # Rules to gen a SliTaz package suitable for Tazpkg. 1.38 genpkg_rules() 1.39 { 1.40 mkdir -p $fs/usr/lib 1.41 - cp -a $install/etc $fs 1.42 - cp -a $install/usr/lib/*.so* $fs/usr/lib 1.43 - cp -a $install/usr/lib/libnl $fs/usr/lib 1.44 + 1.45 + cp -a $install/etc $fs 1.46 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.47 + cp -a $install/usr/lib/libnl $fs/usr/lib 1.48 + 1.49 find $fs/usr/lib -type f -name "*.*a" -exec rm -f {} \; 1.50 }