summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorDave Simons2016-03-18 13:35:38 +0100
committerDave Simons2016-03-18 13:56:22 +0100
commit008b5dc7dcef96f50df50bf6ed1f0891c09d7836 (patch)
tree52e2727b9246e7a2ca01061aecfa73e37a4ba95b /PKGBUILD
parent056b876ea21a8c71c8ab6cd883de321808e14cdd (diff)
downloadaur-008b5dc7dcef96f50df50bf6ed1f0891c09d7836.tar.gz
no need for /run dir
Signed-off-by: Dave Simons <aur@simonsd.org>
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD6
1 files changed, 2 insertions, 4 deletions
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"
}