summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorzoorat2023-11-21 23:57:06 +0600
committerzoorat2023-11-21 23:57:06 +0600
commit01258e7989552c65a91a809bce030825b70c3969 (patch)
treebc744bb186f9449650c09042586a8765e95bb4f3
parentda54f23d7df4ea01480c1feb48c3ef5375bcbb02 (diff)
downloadaur-01258e7989552c65a91a809bce030825b70c3969.tar.gz
fixing man pages
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD7
2 files changed, 4 insertions, 8 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 1dafa7503079..11c9de382ce3 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,16 +1,13 @@
pkgbase = mawk
pkgdesc = An interpreter for the AWK Programming Language
pkgver = 1.3.4_20231102
- pkgrel = 2
+ pkgrel = 3
url = http://invisible-island.net/mawk/
changelog = changelog.txt
arch = i686
arch = x86_64
license = GPL
depends = glibc
- options = strip
- options = emptydirs
- options = zipman
source = https://invisible-island.net/archives/mawk/mawk-1.3.4-20231102.tgz
b2sums = c423381900be429dcfb117df3ceb72dc942aec6e85ea94e59b2fef1b92445620cff3205fb55be1ddee2bfba9597a1c68ed2f41bb155a1cc6791df0f6de75b44b
diff --git a/PKGBUILD b/PKGBUILD
index a1168fecd5fe..ced5ac587f98 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,7 +5,7 @@
pkgname=mawk
pkgver=1.3.4_20231102
-pkgrel=2
+pkgrel=3
pkgdesc="An interpreter for the AWK Programming Language"
arch=('i686' 'x86_64')
@@ -13,7 +13,6 @@ url="http://invisible-island.net/mawk/"
license=('GPL')
depends=('glibc')
-options=(strip emptydirs zipman)
changelog="changelog.txt"
source=("https://invisible-island.net/archives/$pkgname/$pkgname-${pkgver//_/-}.tgz")
@@ -30,6 +29,6 @@ build() {
package() {
cd $pkgname-${pkgver/_/-}
install -d "$pkgdir"/usr/bin
- install -d "$pkgdir"/usr/share/man/man1
- make BINDIR="$pkgdir"/usr/bin MANDIR="$pkgdir"/usr/share/man/man1 install
+ install -d "$pkgdir"/usr/share/man/
+ make BINDIR="$pkgdir"/usr/bin MANDIR="$pkgdir"/usr/share/man/ install
}