summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorliupold2020-08-03 08:51:18 +0530
committerliupold2020-08-03 08:51:18 +0530
commit7c1015f6b03cecb65a39b748bded77b477f2565b (patch)
tree73cec6b4f35238016712652b374fe6e96f0b1e8c
parent2a1e62d4ce048f2a419d9ac7d655dab815601ba3 (diff)
downloadaur-7c1015f6b03cecb65a39b748bded77b477f2565b.tar.gz
added man page.
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD8
2 files changed, 3 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 96c5821992df..a3aeb2339dd4 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = pidswallow-dev-git
pkgdesc = A script to swallow your terminal automatically
pkgver = 2.0.d
- pkgrel = 5
+ pkgrel = 6
url = https://github.com/Liupold/pidswallow/tree/dev
arch = x86_64
license = APACHE
diff --git a/PKGBUILD b/PKGBUILD
index f4e2b1740c95..b67c6b9e02e6 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,14 +1,9 @@
-# This is an example PKGBUILD file. Use this as a start to creating your own,
-# and remove these comments. For more information, see 'man PKGBUILD'.
-# NOTE: Please fill out the license field for your package! If it is unknown,
-# then please put 'unknown'.
-
# shellcheck disable=SC2034
# shellcheck disable=SC2154
# Maintainer: liupold <rohhnch@protonmail.ch>
pkgname=pidswallow-dev-git
-pkgrel=5
+pkgrel=6
pkgver=2.0.d # dev
pkgdesc="A script to swallow your terminal automatically"
arch=(x86_64)
@@ -45,5 +40,6 @@ check() {
package() {
cd "$pkgname" || return 1
install -Dm755 "./pidswallow" "$pkgdir/usr/bin/pidswallow"
+ install -Dm644 "./man/pidswallow.1" "$pkgdir/usr/local/man/man1/$pkgname.1"
install -Dm644 "./README.md" "$pkgdir/usr/share/doc/$pkgname/README.md"
}