summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Simons2016-03-18 13:35:38 +0100
committerDave Simons2016-03-18 13:56:22 +0100
commit008b5dc7dcef96f50df50bf6ed1f0891c09d7836 (patch)
tree52e2727b9246e7a2ca01061aecfa73e37a4ba95b
parent056b876ea21a8c71c8ab6cd883de321808e14cdd (diff)
downloadaur-008b5dc7dcef96f50df50bf6ed1f0891c09d7836.tar.gz
no need for /run dir
Signed-off-by: Dave Simons <aur@simonsd.org>
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD6
2 files changed, 4 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index a1258936a5d4..90be432f1f85 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,9 @@
# Generated by mksrcinfo v8
-# Fri Mar 18 12:40:18 UTC 2016
+# Fri Mar 18 12:41:16 UTC 2016
pkgbase = dynamic-colors-git
pkgdesc = Change terminal colors on the fly
pkgver = 35325f4
- pkgrel = 2
+ pkgrel = 3
url = https://github.com/sos4nt/dynamic-colors
arch = any
license = MIT
diff --git a/PKGBUILD b/PKGBUILD
index efc473a70d14..687b167685f8 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=dynamic-colors-git
pkgver=35325f4
-pkgrel=2
+pkgrel=3
pkgdesc="Change terminal colors on the fly"
arch=('any')
url="https://github.com/sos4nt/dynamic-colors"
@@ -26,11 +26,9 @@ build() {
package() {
cd "$srcdir/dynamic-colors"
- install -dm755 "$pkgdir/usr/bin" "$pkgdir/usr/share/dynamic-colors/colorschemes" "$pkgdir/run/dynamic-colors" "$pkgdir/usr/share/bash-completion/completions" "$pkgdir/usr/share/zsh/site-functions"
+ install -dm755 "$pkgdir/usr/bin" "$pkgdir/usr/share/dynamic-colors/colorschemes" "$pkgdir/usr/share/bash-completion/completions" "$pkgdir/usr/share/zsh/site-functions"
install -m755 "bin/dynamic-colors" "$pkgdir/usr/bin/dynamic-colors"
install -m755 "completions/dynamic-colors.bash" "$pkgdir/usr/share/bash-completion/completions/dynamic-colors"
install -m755 "completions/dynamic-colors.zsh" "$pkgdir/usr/share/zsh/site-functions/_dynamic-colors"
cp -r "colorschemes/" "$pkgdir/usr/share/dynamic-colors/"
- touch "$pkgdir/run/dynamic-colors/colorscheme"
- chmod 777 "$pkgdir/run/dynamic-colors/colorscheme"
}