blob: 90195083cb489a215f236376bc9a2f31d21f3b5d (
plain)
1 # Description: Utilities to control and monitor S.M.A.R.T. hard drives
2 # URL: http://smartmontools.sourceforge.net/
3 # Maintainer: Simon Gloßner, viper at hometux dot de
4 # Packager: Jürgen Daubert, juergen dot daubert at t-online dot de
5
6 name=smartmontools
7 version=5.38
8 release=1
9 source=(http://dl.sourceforge.net/$name/$name-$version.tar.gz \
10 smartd)
11
12 build () {
13 cd $name-$version
14
15 ./configure \
16 --prefix=/usr \
17 --mandir=/usr/man \
18 --sysconfdir=/etc
19 make
20 make DESTDIR=$PKG install
21
22 install -m 755 ../smartd $PKG/etc/rc.d
23
24 rm -r $PKG/usr/share
25 rm -r $PKG/etc/rc.d/init.d
26 }
|