2006-04-10 12:43:50 +00:00
|
|
|
# Description: Utilities to control and monitor S.M.A.R.T. hard drives
|
2020-01-04 12:58:52 +01:00
|
|
|
# URL: http://smartmontools.sourceforge.net/
|
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
2006-04-10 12:43:50 +00:00
|
|
|
|
|
|
|
name=smartmontools
|
2020-12-31 14:19:34 +01:00
|
|
|
version=7.2
|
2015-06-06 15:39:03 +02:00
|
|
|
release=1
|
2010-11-12 13:57:28 +01:00
|
|
|
source=(http://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.gz \
|
2006-04-10 12:43:50 +00:00
|
|
|
smartd)
|
|
|
|
|
|
|
|
build () {
|
|
|
|
cd $name-$version
|
|
|
|
|
2010-03-04 10:55:43 +01:00
|
|
|
./configure --prefix=/usr \
|
|
|
|
--sysconfdir=/etc \
|
2011-06-23 10:41:03 +02:00
|
|
|
--with-initscriptdir=/etc/rc.d \
|
2010-03-04 10:55:43 +01:00
|
|
|
--localstatedir=/var \
|
2016-05-09 12:48:14 +02:00
|
|
|
--with-savestates \
|
|
|
|
--with-attributelog
|
2010-03-04 10:55:43 +01:00
|
|
|
|
2006-04-10 12:43:50 +00:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
2012-10-11 17:09:42 +02:00
|
|
|
install -d $PKG/var/lib/smartmontools
|
2010-03-04 10:55:43 +01:00
|
|
|
install -m 755 $SRC/smartd $PKG/etc/rc.d
|
2006-04-10 12:43:50 +00:00
|
|
|
|
2010-03-04 10:55:43 +01:00
|
|
|
rm -r $PKG/usr/share/doc
|
2006-04-10 12:43:50 +00:00
|
|
|
}
|