diff options
author | aqua <aqua@iserlohn-fortress.net> | 2024-04-28 11:24:25 +0300 |
---|---|---|
committer | aqua <aqua@iserlohn-fortress.net> | 2024-04-28 11:42:59 +0300 |
commit | 7eac672fad518a6df34d1514390ecb54875a624d (patch) | |
tree | 1fec58d0747fc07e4429ec157f43d0ab45029e66 /linux/makepkg/PKGBUILD | |
parent | Added compiler warnings for poi (diff) | |
download | smolbote-7eac672fad518a6df34d1514390ecb54875a624d.tar.xz |
Readded manpages
Diffstat (limited to 'linux/makepkg/PKGBUILD')
-rw-r--r-- | linux/makepkg/PKGBUILD | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/linux/makepkg/PKGBUILD b/linux/makepkg/PKGBUILD index 9981f46..749da87 100644 --- a/linux/makepkg/PKGBUILD +++ b/linux/makepkg/PKGBUILD @@ -37,7 +37,8 @@ prepare() { cmake -S $srcdir/smolbote -B $srcdir/build \ -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_INSTALL_PREFIX=/usr + -DCMAKE_INSTALL_PREFIX=/usr \ + -DINSTALL_MANPAGES=ON } pkgver() { @@ -48,6 +49,7 @@ pkgver() { build() { cmake --build $srcdir/build -- ${MAKEFLAGS} + cmake --build $srcdir/build --target manpages -- ${MAKEFLAGS} } check() { |