blob: d9153b6d2ccefacd5e04a858daef7d446b41832c (
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
39
|
# Maintainer: Pantelis Panayiotou <p.panayiotou@gmail.com>
pkgname="qman"
pkgver="1.3.1"
pkgrel="6"
epoch="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" "man-db")
makedepends=("git" "meson" "python-cogapp")
provides=("qman")
conflicts=("qman-git")
replaces=("qman-git")
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/plp13/qman/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=("e7be878f3ba065fb4abf170791a5e313fccba6f1329c0322a346f3e66d524f99")
prepare() {
cd "${pkgname}-${pkgver}"
sed -i "s/install_dir\: 'man\/man1'/install_dir: 'share\/man\/man1'/g" "man/meson.build"
}
build() {
opts=(
"-Ddocdir=share/doc/qman"
"-Dman-pages=enabled"
"-Ddocs=enabled"
"-Dbzip2=enabled"
)
arch-meson build "${pkgname}-${pkgver}" ${opts}
meson compile -C build
}
package() {
meson install --destdir "${pkgdir}" -C build
cd "${pkgname}-${pkgver}"
install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
}
|