wok view libatasmart/receipt @ rev 22149

updated xapian and xapian-dev (1.2.19 -> 1.4.13)
author Hans-G?nter Theisgen
date Wed Nov 06 17:20:28 2019 +0100 (2019-11-06)
parents 6c3718ca17b6
children 3e2a0347b2f1
line source
1 # SliTaz package receipt.
3 PACKAGE="libatasmart"
4 VERSION="0.19"
5 CATEGORY="system-tools"
6 SHORT_DESC="A disk reporting library."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="http://0pointer.de/blog/projects/being-smart.html"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="http://0pointer.de/public/$TARBALL"
14 DEPENDS="udev"
15 BUILD_DEPENDS="udev-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --disable-static \
22 $CONFIGURE_ARGS &&
23 make -j 1 &&
24 make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 cp -a $install/usr/sbin $fs/usr
34 }