1
0
forked from ports/opt

smartmontools: update to 7.3

This commit is contained in:
Juergen Daubert 2022-03-02 14:33:12 +01:00
parent 16ca743ae5
commit 01a281ecf9
2 changed files with 21 additions and 20 deletions

View File

@ -1,6 +1,6 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/VGa9qMcmuaBEUxEuvi/tDvnBn5YprQIu2yjxit9jTdHwVpJcD6n245Ne/Ittrr9gGncSlZjfSQEsy+DHBODyQU=
SHA256 (Pkgfile) = ea52568fe94ca7126f994157ebe18f61275297efe10de9df1bf01a299ce47a40
RWSE3ohX2g5d/TgpXRI0zDiy/rAmxTCO+pd/MYpL3q5ybLpg/MXecVwEOGzQsmbgdN+Hmshg3Wn0z4YYhZ1XbinodIngsqW6UAE=
SHA256 (Pkgfile) = 4ef42178a8c1fe7496cb9fc8108c7358d448b80add4443a040985f1b11fd492b
SHA256 (.footprint) = e24fc5f2ae123da4e2c3532ea45658a54c79ccbe4d1216340baa25cea6298d62
SHA256 (smartmontools-7.2.tar.gz) = 5cd98a27e6393168bc6aaea070d9e1cd551b0f898c52f66b2ff2e5d274118cd6
SHA256 (smartmontools-7.3.tar.gz) = a544f8808d0c58cfb0e7424ca1841cb858a974922b035d505d4e4c248be3a22b
SHA256 (smartd) = d19e41ec07dc0d38c5b94159ddb29e544322fe738fe0ef3b570b2e96f81433ae

View File

@ -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
}