2006-04-10 12:43:50 +00:00
|
|
|
# Description: Utilities to control and monitor S.M.A.R.T. hard drives
|
2022-03-02 14:33:12 +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
|
2023-08-01 18:16:09 +02:00
|
|
|
version=7.4
|
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 \
|
2022-03-02 14:33:12 +01:00
|
|
|
smartd)
|
2006-04-10 12:43:50 +00:00
|
|
|
|
2022-03-02 14:33:12 +01:00
|
|
|
build() {
|
|
|
|
cd $name-$version
|
2006-04-10 12:43:50 +00:00
|
|
|
|
2022-03-02 14:33:12 +01:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--with-initscriptdir=/etc/rc.d \
|
|
|
|
--localstatedir=/var \
|
|
|
|
--with-savestates \
|
|
|
|
--with-attributelog
|
2010-03-04 10:55:43 +01:00
|
|
|
|
2022-03-02 14:33:12 +01:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2006-04-10 12:43:50 +00:00
|
|
|
|
2022-03-02 14:33:12 +01:00
|
|
|
install -d $PKG/var/lib/smartmontools
|
|
|
|
install -m 755 $SRC/smartd $PKG/etc/rc.d
|
2006-04-10 12:43:50 +00:00
|
|
|
|
2022-03-02 14:33:12 +01:00
|
|
|
rm -r $PKG/usr/share/doc
|
2006-04-10 12:43:50 +00:00
|
|
|
}
|