blob: 7ce1b1d72d721e0b2daffbeb366dead6f9d08377 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Maintainer: Ivan Shapovalov <intelfx@intelfx.name>
# Contributor: Pantelis Panayiotou <p.panayiotou@gmail.com>
pkgname=qman-git
pkgver=1.3.1.r5.gd21ef51
pkgrel=1
pkgdesc="A more modern manual page viewer for our terminals"
arch=('x86_64' 'aarch64')
url="https://github.com/plp13/qman"
license=("BSD-2-Clause")
depends=("ncurses" "libinih" "zlib" "bzip2" "xz" "man-db")
makedepends=("git" "meson" "python-cogapp")
provides=("qman")
conflicts=("qman")
source=("git+https://github.com/plp13/qman.git#branch=devel")
sha256sums=('SKIP')
pkgver() {
cd qman
git describe --long --tags | sed 's/^v//;s/[^-]*-g/r&/;s/-/./g'
}
prepare() {
cd qman
sed -r "s|install_dir: 'man/man1'|install_dir: 'share/man/man1'|g" \
-i man/meson.build
}
build() {
arch-meson build qman
meson compile -C build
}
package() {
meson install --destdir "${pkgdir}" -C build
cd qman
install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
}
|