summaryrefslogtreecommitdiff
path: root/opt/smartmontools
diff options
context:
space:
mode:
Diffstat (limited to 'opt/smartmontools')
-rw-r--r--opt/smartmontools/.footprint40
-rw-r--r--opt/smartmontools/.signature6
-rw-r--r--opt/smartmontools/MAKEPKG29
3 files changed, 75 insertions, 0 deletions
diff --git a/opt/smartmontools/.footprint b/opt/smartmontools/.footprint
new file mode 100644
index 0000000..51a70ff
--- /dev/null
+++ b/opt/smartmontools/.footprint
@@ -0,0 +1,40 @@
+drwxr-xr-x root/root etc/
+-rw-r--r-- root/root etc/smartd.conf
+-rwxr-xr-x root/root etc/smartd_warning.sh
+drwxr-xr-x root/root etc/smartd_warning.d/
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/sbin/
+-rwxr-xr-x root/root usr/sbin/smartctl
+-rwxr-xr-x root/root usr/sbin/smartd
+-rwxr-xr-x root/root usr/sbin/update-smart-drivedb
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/doc/
+drwxr-xr-x root/root usr/share/doc/smartmontools/
+-rw-r--r-- root/root usr/share/doc/smartmontools/AUTHORS
+-rw-r--r-- root/root usr/share/doc/smartmontools/COPYING
+-rw-r--r-- root/root usr/share/doc/smartmontools/ChangeLog
+-rw-r--r-- root/root usr/share/doc/smartmontools/ChangeLog-6.0-7.0
+-rw-r--r-- root/root usr/share/doc/smartmontools/INSTALL
+-rw-r--r-- root/root usr/share/doc/smartmontools/NEWS
+-rw-r--r-- root/root usr/share/doc/smartmontools/README
+-rw-r--r-- root/root usr/share/doc/smartmontools/TODO
+-rw-r--r-- root/root usr/share/doc/smartmontools/smartd.conf
+drwxr-xr-x root/root usr/share/doc/smartmontools/examplescripts/
+-rwxr-xr-x root/root usr/share/doc/smartmontools/examplescripts/Example1
+-rwxr-xr-x root/root usr/share/doc/smartmontools/examplescripts/Example2
+-rwxr-xr-x root/root usr/share/doc/smartmontools/examplescripts/Example3
+-rwxr-xr-x root/root usr/share/doc/smartmontools/examplescripts/Example4
+-rwxr-xr-x root/root usr/share/doc/smartmontools/examplescripts/Example5
+-rwxr-xr-x root/root usr/share/doc/smartmontools/examplescripts/Example6
+-rwxr-xr-x root/root usr/share/doc/smartmontools/examplescripts/Example7
+-rwxr-xr-x root/root usr/share/doc/smartmontools/examplescripts/Example8
+-rw-r--r-- root/root usr/share/doc/smartmontools/examplescripts/README
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man5/
+-rw-r--r-- root/root usr/share/man/man5/smartd.conf.5.gz
+drwxr-xr-x root/root usr/share/man/man8/
+-rw-r--r-- root/root usr/share/man/man8/smartctl.8.gz
+-rw-r--r-- root/root usr/share/man/man8/smartd.8.gz
+-rw-r--r-- root/root usr/share/man/man8/update-smart-drivedb.8.gz
+drwxr-xr-x root/root usr/share/smartmontools/
+-rw-r--r-- root/root usr/share/smartmontools/drivedb.h
diff --git a/opt/smartmontools/.signature b/opt/smartmontools/.signature
new file mode 100644
index 0000000..2383944
--- /dev/null
+++ b/opt/smartmontools/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mNCWWhDXx1NtpDhAhYbSfiCefyVKJiV0uzASmLJg/0laigVhaU5qZQrE6X+klJMJr3yjI7E6qVCBLbghh/4HiQk=
+
+SHA256 (MAKEPKG) = a82045a963a4158f5f8a035994a28e44ad5a07d986d5a8e31666cf51b8de49f2
+SHA256 (.footprint) = f3df528d542c30eec5252e6777274c652fe4e9f59e98a293567999a369176eb9
+SHA256 (smartmontools-7.5.tar.gz) = 690b83ca331378da9ea0d9d61008c4b22dde391387b9bbad7f29387f2595f76e
+SHA256 (smartmontools#7.5-1.pkg.tar.gz) = 5eaceb64f7ba99d27416dde9007ab8b1d6eb6452700df3bcf83278278ad107a5
diff --git a/opt/smartmontools/MAKEPKG b/opt/smartmontools/MAKEPKG
new file mode 100644
index 0000000..cef2070
--- /dev/null
+++ b/opt/smartmontools/MAKEPKG
@@ -0,0 +1,29 @@
+#!/bin/mkpkg
+# description: S.M.A.R.T. disk monitoring tools
+# url: https://www.smartmontools.org/
+name=smartmontools
+version=7.5
+release=1
+source=(https://downloads.sourceforge.net/$name/$name-$version.tar.gz)
+
+sha256sums=(
+ "690b83ca331378da9ea0d9d61008c4b22dde391387b9bbad7f29387f2595f76e"
+)
+
+build() {
+ cd $name-$version
+
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --with-initscriptdir=no \
+ --with-libsystemd=no
+ make
+ make DESTDIR=$PKG install
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+# vim: filetype=sh