libatasmart: new package.

Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Marek Belisko 2013-01-18 12:08:45 +00:00 committed by Peter Korsgaard
parent ff3c47ee04
commit c7a81abc54
3 changed files with 30 additions and 0 deletions

View file

@ -245,6 +245,7 @@ source "package/iostat/Config.in"
source "package/irda-utils/Config.in"
source "package/kbd/Config.in"
source "package/lcdproc/Config.in"
source "package/libatasmart/Config.in"
source "package/lm-sensors/Config.in"
source "package/lshw/Config.in"
source "package/lsuio/Config.in"

View file

@ -0,0 +1,11 @@
config BR2_PACKAGE_LIBATASMART
bool "libatasmart"
depends on BR2_PACKAGE_UDEV # libudev is configure dependency
help
The libatasmart package is a disk reporting library.
It only supports a subset of the ATA S.M.A.R.T. functionality.
http://www.linuxfromscratch.org/blfs/view/svn/general/libatasmart.html
comment "libatasmart requires udev to be enabled"
depends on !BR2_PACKAGE_UDEV

View file

@ -0,0 +1,18 @@
#############################################################
#
# libatasmart
#
#############################################################
LIBATASMART_VERSION = 0.19
LIBATASMART_SOURCE = libatasmart-$(LIBATASMART_VERSION).tar.xz
LIBATASMART_SITE = http://0pointer.de/public
LIBATASMART_LICENSE = LGPLv2.1
LIBATASMART_LICENSE_FILE = LGPL
LIBATASMART_INSTALL_STAGING = YES
# package doesn't include configure script
LIBATASMART_AUTORECONF = YES
LIBATASMART_DEPENDENCIES = udev
$(eval $(autotools-package))