summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorHans-Nikolai Viessmann2020-02-26 13:18:33 +0100
committerHans-Nikolai Viessmann2020-02-26 13:18:33 +0100
commit447d231cfdbf2ac550442c746d7720e6b672e459 (patch)
treecaf3fb2bad34c9d4e5a7f2e2e388722ce9c0910f /PKGBUILD
parent177c311fae12813ac9b410094b00b24c9c372db7 (diff)
downloadaur-447d231cfdbf2ac550442c746d7720e6b672e459.tar.gz
remove redundent gunzip call
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD5
1 files changed, 2 insertions, 3 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 14daac41918a..812a0904f555 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=oilshell
pkgver=0.8.pre1
-pkgrel=1
+pkgrel=2
pkgdesc='Oil, a new unix shell'
arch=('x86_64')
url='http://www.oilshell.org/'
@@ -29,6 +29,5 @@ package() {
ln -s /usr/bin/oil.ovm "$pkgdir/usr/bin/oil"
# install manpage
- install -d "$pkgdir/usr/share/man/man1"
- gunzip -fc doc/osh.1 > "$pkgdir/usr/share/man/man1/osh.1.gz"
+ install -Dm644 doc/osh.1 "$pkgdir/usr/share/man/man1"
}