diff options
author | Juergen Daubert <jue@jue.li> | 2022-03-02 14:33:12 +0100 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2022-03-02 14:33:12 +0100 |
commit | 01a281ecf956d55e74148b7ededbf342dd88faf3 (patch) | |
tree | b20d3379608e6872f301f50608c89b93c788f491 /smartmontools/Pkgfile | |
parent | 16ca743ae5c2853afe6290ed83b29dbb660a0ea3 (diff) | |
download | opt-01a281ecf956d55e74148b7ededbf342dd88faf3.tar.gz opt-01a281ecf956d55e74148b7ededbf342dd88faf3.tar.xz |
smartmontools: update to 7.3
Diffstat (limited to 'smartmontools/Pkgfile')
-rw-r--r-- | smartmontools/Pkgfile | 35 |
1 files changed, 18 insertions, 17 deletions
diff --git a/smartmontools/Pkgfile b/smartmontools/Pkgfile index 198c7ace6..dfbe5f1eb 100644 --- a/smartmontools/Pkgfile +++ b/smartmontools/Pkgfile @@ -1,28 +1,29 @@ # Description: Utilities to control and monitor S.M.A.R.T. hard drives -# URL: http://smartmontools.sourceforge.net/ -# Maintainer: Juergen Daubert, jue at crux dot nu +# URL: http://smartmontools.sourceforge.net/ +# Maintainer: Juergen Daubert, jue at crux dot nu name=smartmontools -version=7.2 +version=7.3 release=1 source=(http://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.gz \ - smartd) + smartd) -build () { - cd $name-$version +build() { + cd $name-$version - ./configure --prefix=/usr \ - --sysconfdir=/etc \ - --with-initscriptdir=/etc/rc.d \ - --localstatedir=/var \ - --with-savestates \ - --with-attributelog + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --with-initscriptdir=/etc/rc.d \ + --localstatedir=/var \ + --with-savestates \ + --with-attributelog - make - make DESTDIR=$PKG install + make + make DESTDIR=$PKG install - install -d $PKG/var/lib/smartmontools - install -m 755 $SRC/smartd $PKG/etc/rc.d + install -d $PKG/var/lib/smartmontools + install -m 755 $SRC/smartd $PKG/etc/rc.d - rm -r $PKG/usr/share/doc + rm -r $PKG/usr/share/doc } |