wok view libatasmart/receipt @ rev 20639

up rclone to v1.44
author Lucas Levrel <llevrel@yahoo.fr>
date Thu Jan 10 21:49:04 2019 +0100 (2019-01-10)
parents b40b085ea0d4
children eba6e70162a2
line source
1 # SliTaz package receipt.
3 PACKAGE="libatasmart"
4 VERSION="0.18"
5 CATEGORY="system-tools"
6 SHORT_DESC="The libatasmart package is a disk reporting library."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://0pointer.de/blog/projects/being-smart.html"
11 WGET_URL="http://0pointer.de/public/$TARBALL"
13 DEPENDS="udev"
14 BUILD_DEPENDS="udev-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --disable-static \
21 $CONFIGURE_ARGS &&
22 make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 cp -a $install/usr/sbin $fs/usr
31 }