From: sev Date: Sat, 9 May 2020 09:25:42 +0000 (-0500) Subject: testing/motd: fix url and install mode X-Git-Url: https://git.sev.monster/aports.git/commitdiff_plain/feea2e80a1f9188ffd176503b77caf7d900cc1cb?ds=sidebyside;hp=6ccbc38a7051947881a9f78450c46b056a62e026 testing/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 }