opt/smartmontools/Pkgfile

30 lines
789 B
Plaintext
Raw Normal View History

2006-04-10 14:43:50 +02:00
# Description: Utilities to control and monitor S.M.A.R.T. hard drives
# URL: http://smartmontools.sourceforge.net/
2011-02-02 13:44:37 +01:00
# Maintainer: Juergen Daubert, jue at crux dot nu
# Packager: Juergen Daubert, jue at crux dot nu
2006-04-10 14:43:50 +02:00
name=smartmontools
2016-05-09 12:48:14 +02:00
version=6.5
2015-06-06 15:39:03 +02:00
release=1
source=(http://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.gz \
2006-04-10 14:43:50 +02:00
smartd)
build () {
cd $name-$version
2010-03-04 10:55:43 +01:00
./configure --prefix=/usr \
--sysconfdir=/etc \
--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 14:43:50 +02: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 14:43:50 +02:00
2010-03-04 10:55:43 +01:00
rm -r $PKG/usr/share/doc
2006-04-10 14:43:50 +02:00
}