summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatheus Fillipe2022-10-23 18:06:17 -0300
committerMatheus Fillipe2022-10-23 18:06:17 -0300
commit0ead03038225e25c8c4e34f45f978d90e2031224 (patch)
tree9d2207576f8f7afa7152d7d89754e1f66187ce91
parentc4a0cc4a9d812a2cbaea75addbbbab09c2022138 (diff)
downloadaur-0ead03038225e25c8c4e34f45f978d90e2031224.tar.gz
Updated doc build
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD8
2 files changed, 6 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 358e6892c295..ebd14368ac2b 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,11 +1,12 @@
pkgbase = warpd-git
pkgdesc = A modal keyboard driven interface for mouse manipulation.
- pkgver = r226.daf11b2
+ pkgver = r229.faa423d
pkgrel = 1
url = https://github.com/rvaiya/warpd
arch = x86_64
license = MIT
makedepends = git
+ makedepends = scdoc
depends = libxinerama
depends = libxft
depends = libxfixes
diff --git a/PKGBUILD b/PKGBUILD
index bf6999b90031..d9c534d32535 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer mattf <matheusfillipeag@gmail.com>
pkgname=warpd-git
-pkgver=r226.daf11b2
+pkgver=r229.faa423d
_gitname=warpd
pkgrel=1
pkgdesc="A modal keyboard driven interface for mouse manipulation."
@@ -9,7 +9,7 @@ url="https://github.com/rvaiya/warpd"
license=('MIT')
arch=('x86_64')
md5sums=('SKIP')
-makedepends=(git)
+makedepends=(git scdoc)
depends=(libxinerama libxft libxfixes libxtst libx11)
provides=(warpd)
conflicts=(warpd warpd-wayland warpd-wayland-git)
@@ -23,11 +23,11 @@ pkgver() {
build () {
cd ${_gitname}
make
+ make man
}
package () {
cd ${_gitname}
install -Dm755 -t "${pkgdir}"/usr/bin bin/warpd
- mkdir -p "${pkgdir}"/usr/share/man/man1/
- install -Dm644 -t "${pkgdir}"/usr/share/man/man1/ usr/local/share/man/man1/warpd.1.gz
+ install -Dm644 files/warpd.1.gz -t "${pkgdir}"/usr/share/man/man1/
}