wok diff libatasmart/receipt @ rev 23696
Up libtcplay (3.3)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Apr 27 09:29:39 2020 +0000 (2020-04-27) |
parents | 6c3718ca17b6 |
children | 3e2a0347b2f1 |
line diff
1.1 --- a/libatasmart/receipt Sat Nov 09 17:34:23 2013 +0000 1.2 +++ b/libatasmart/receipt Mon Apr 27 09:29:39 2020 +0000 1.3 @@ -1,13 +1,14 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libatasmart" 1.7 -VERSION="0.18" 1.8 +VERSION="0.19" 1.9 CATEGORY="system-tools" 1.10 -SHORT_DESC="The libatasmart package is a disk reporting library." 1.11 +SHORT_DESC="A disk reporting library." 1.12 MAINTAINER="pankso@slitaz.org" 1.13 LICENSE="LGPL2.1" 1.14 -TARBALL="$PACKAGE-$VERSION.tar.gz" 1.15 WEB_SITE="http://0pointer.de/blog/projects/being-smart.html" 1.16 + 1.17 +TARBALL="$PACKAGE-$VERSION.tar.xz" 1.18 WGET_URL="http://0pointer.de/public/$TARBALL" 1.19 1.20 DEPENDS="udev" 1.21 @@ -16,16 +17,18 @@ 1.22 # Rules to configure and make the package. 1.23 compile_rules() 1.24 { 1.25 - cd $src 1.26 - ./configure --disable-static \ 1.27 + ./configure \ 1.28 + --disable-static \ 1.29 $CONFIGURE_ARGS && 1.30 - make && make install 1.31 + make -j 1 && 1.32 + make install 1.33 } 1.34 1.35 # Rules to gen a SliTaz package suitable for Tazpkg. 1.36 genpkg_rules() 1.37 { 1.38 mkdir -p $fs/usr/lib 1.39 - cp -a $install/usr/lib/*.so* $fs/usr/lib 1.40 - cp -a $install/usr/sbin $fs/usr 1.41 + 1.42 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.43 + cp -a $install/usr/sbin $fs/usr 1.44 }