From: sev Date: Sat, 9 May 2020 09:25:42 +0000 (-0500) Subject: motd: fix url and install mode X-Git-Url: https://git.sev.monster/aports.git/commitdiff_plain/cce0f0e84ff600d37f295da6a1c30e374ada9163 motd: fix url and install mode --- diff --git a/testing/motd/APKBUILD b/testing/motd/APKBUILD index 8766e15..9762013 100644 --- a/testing/motd/APKBUILD +++ b/testing/motd/APKBUILD @@ -2,9 +2,9 @@ # Maintainer: sev pkgname=motd pkgver=1.0.0 -pkgrel=0 +pkgrel=1 pkgdesc="Write the result of \`uname -a' to /etc/motd daily" -url="https://git.sev.monster/~sev/alpine-local" +url="https://git.sev.monster/alpine.git" arch="noarch" license="WTFPL" subpackages="$pkgname-doc" @@ -13,7 +13,7 @@ options="!check" package() { # Replace with proper package command(s) - install -Dm644 motd "$pkgdir"/etc/periodic/daily/motd + install -Dm755 motd "$pkgdir"/etc/periodic/daily/motd install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING }