diff options
author | Erich Eckner <git@eckner.net> | 2018-05-27 10:13:52 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-05-27 10:13:52 +0200 |
commit | 14a8f5d3c7889f2046a008b1b1dc29f485ebb359 (patch) | |
tree | 644ebb60f7155dd5c139d233857684fbcd8546e6 /manualPorts/logwatch-extra | |
download | crux-ports-14a8f5d3c7889f2046a008b1b1dc29f485ebb359.tar.xz |
initial commit
Diffstat (limited to 'manualPorts/logwatch-extra')
-rw-r--r-- | manualPorts/logwatch-extra/.footprint | 10 | ||||
-rw-r--r-- | manualPorts/logwatch-extra/.md5sum | 1 | ||||
-rw-r--r-- | manualPorts/logwatch-extra/.signature | 5 | ||||
-rw-r--r-- | manualPorts/logwatch-extra/Pkgfile | 18 | ||||
-rwxr-xr-x | manualPorts/logwatch-extra/lastVersion.sh | 8 |
5 files changed, 42 insertions, 0 deletions
diff --git a/manualPorts/logwatch-extra/.footprint b/manualPorts/logwatch-extra/.footprint new file mode 100644 index 0000000..32ac98c --- /dev/null +++ b/manualPorts/logwatch-extra/.footprint @@ -0,0 +1,10 @@ +drwxr-xr-x root/root etc/ +drwxr-xr-x root/root etc/cron/ +drwxr-xr-x root/root etc/cron/daily/ +-rwxr-xr-x root/root etc/cron/daily/doalogwatch +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/doalogwatch +drwxr-xr-x root/root var/ +drwxr-xr-x root/root var/cache/ +drwxr-xr-x root/root var/cache/logwatch/ diff --git a/manualPorts/logwatch-extra/.md5sum b/manualPorts/logwatch-extra/.md5sum new file mode 100644 index 0000000..ca5feae --- /dev/null +++ b/manualPorts/logwatch-extra/.md5sum @@ -0,0 +1 @@ +8908f2dae729071b582dba26072056bf dl.php?dl=logwatch-extra-0.8 diff --git a/manualPorts/logwatch-extra/.signature b/manualPorts/logwatch-extra/.signature new file mode 100644 index 0000000..3e7e208 --- /dev/null +++ b/manualPorts/logwatch-extra/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/deepthought.pub +RWQxCptPusLGGm42IKXGxuCJIK/JAQBXsZyPZG9UXWIKga8HuTvdKep6poJ3FAr6lwszGYbqwbqC/7b6s4a1LPAPWtEI9G67BQc= +SHA256 (Pkgfile) = c2ac6dfb98106497c5cb4a3da4f916ffb76f7a8e0624bfff5f62c172fd3e600a +SHA256 (.footprint) = 5c1a893b169fd64fd09ff72832f43b73db9a6eddecc8adf0d14b786c206c4e98 +SHA256 (dl.php?dl=logwatch-extra-0.8) = 7fc6ea7d2b8cb45b2fa7aa937b79a741f723176eaf9447a5a2bd2a1ca744094b diff --git a/manualPorts/logwatch-extra/Pkgfile b/manualPorts/logwatch-extra/Pkgfile new file mode 100644 index 0000000..757058e --- /dev/null +++ b/manualPorts/logwatch-extra/Pkgfile @@ -0,0 +1,18 @@ +# Description: extra-capabilities for logwatch: better cron-frontend +# URL: http://sourceforge.net/projects/logwatch/ +# Maintainer: Erich Eckner, crux at eckner dot net +# Depends: logwatch + +name=logwatch-extra +version=0.8 +release=1 +source=(https://opensources.eckner.net/dl.php?dl=${name}-${version}) + +build() { + + tar -xf *${name}-${version} + cd $name-$version + make + make CRONDIR=/etc/cron/daily DESTDIR=$PKG install + +} diff --git a/manualPorts/logwatch-extra/lastVersion.sh b/manualPorts/logwatch-extra/lastVersion.sh new file mode 100755 index 0000000..42fc8a5 --- /dev/null +++ b/manualPorts/logwatch-extra/lastVersion.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +wget -O - "https://opensources.eckner.net/ls.php?ls=logwatch-extra" 2> /dev/null | \ + tr "<>" "\n\n" | \ + grep "^logwatch-extra-" | \ + sed "s|^logwatch-extra-||" | \ + sort -V | \ + tail -n1 |