diff options
author | Klaus Alexander Seistrup | 2025-03-31 10:05:43 +0200 |
---|---|---|
committer | Klaus Alexander Seistrup | 2025-03-31 10:05:43 +0200 |
commit | 62285ef9a46793d0cf907ace0f3a0e286cb25d81 (patch) | |
tree | 535827c0b155d4b19f0985d480891400ac150ac1 | |
parent | 1119d8c4de2be98ed2e3da8b1d8a6534ea583b10 (diff) | |
download | aur-makesure.tar.gz |
FIX: Docs should reside in /usr/share/doc/, not …/docs/
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -1,7 +1,7 @@ pkgbase = makesure pkgdesc = Simple AWK-based task/command runner with declarative goals and dependencies pkgver = 0.9.24 - pkgrel = 1 + pkgrel = 2 url = https://github.com/xonixx/makesure changelog = makesure.changelog arch = any @@ -4,7 +4,7 @@ pkgname='makesure' pkgver=0.9.24 -pkgrel=1 +pkgrel=2 pkgdesc='Simple AWK-based task/command runner with declarative goals and dependencies' arch=('any') url='https://github.com/xonixx/makesure' @@ -20,7 +20,7 @@ package() { install -vDm0755 makesure "$pkgdir/usr/bin/makesure" install -vDm0644 completion.bash "$pkgdir/usr/share/bash-completion/completions/makesure" - install -vDm0644 -t "$pkgdir/usr/share/docs/$pkgname/" \ + install -vDm0644 -t "$pkgdir/usr/share/doc/$pkgname/" \ CHANGELOG.md README.md docs/*.md install -vDm0644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" } |