summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulian Wolff2020-10-05 17:29:25 +0200
committerJulian Wolff2020-10-05 17:29:25 +0200
commit8e236cc1936a2c6246c3fbd1ab5fbe8310f76898 (patch)
tree8ccc9bc0d1f05058e348b569cd8fbb817f1e0972
parent1436a3af07b1947eb3bcd83ffe4b3802bc569d39 (diff)
downloadaur-8e236cc1936a2c6246c3fbd1ab5fbe8310f76898.tar.gz
fix file permissions
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD6
2 files changed, 4 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 17390d473b0c..92389a8a5324 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,5 +1,5 @@
# Generated by mksrcinfo v8
-# Wed Feb 28 13:09:17 UTC 2018
+# Mon Oct 5 15:28:27 UTC 2020
pkgbase = moc-mpris-git
pkgdesc = MPRIS2 support for local or remote instances of MOC - music on console
pkgver = 1.0.r3.ccfadf7
diff --git a/PKGBUILD b/PKGBUILD
index 936e89ddfece..b9afe9d81bc7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -40,9 +40,9 @@ package() {
mkdir -p "${pkgdir}/usr/lib/systemd/user/"
mkdir -p "${pkgdir}/usr/lib/moc-mpris/"
- install -D *.service "${pkgdir}/usr/lib/systemd/user/"
- install -D *.sh "${pkgdir}/usr/lib/moc-mpris/"
- install -D *.py "${pkgdir}/usr/lib/moc-mpris/"
+ install -D -m644 *.service "${pkgdir}/usr/lib/systemd/user/"
+ install -D -m755 *.sh "${pkgdir}/usr/lib/moc-mpris/"
+ install -D -m755 *.py "${pkgdir}/usr/lib/moc-mpris/"
echo "Run \`systemctl --user enable --now moc_mpris\` to enable MPRIS2 support for a local instance of MOC"
echo "Run \`systemctl --user enable --now moc_mpris@'<ssh-user>@<ssh-address>'\` to enable MPRIS2 support for a remote instance of MOC. You will need to set up a password-less ssh connection for this to work."