fix(arch): properly install man pages
Some checks failed
ci/woodpecker/push/lint Pipeline is pending
ci/woodpecker/push/test Pipeline is pending
ci/woodpecker/push/build Pipeline failed
ci/woodpecker/push/docker unknown status
ci/woodpecker/push/docs Pipeline failed
ci/woodpecker/push/man unknown status
ci/woodpecker/push/deploy unknown status
ci/woodpecker/push/arch Pipeline failed
Some checks failed
ci/woodpecker/push/lint Pipeline is pending
ci/woodpecker/push/test Pipeline is pending
ci/woodpecker/push/build Pipeline failed
ci/woodpecker/push/docker unknown status
ci/woodpecker/push/docs Pipeline failed
ci/woodpecker/push/man unknown status
ci/woodpecker/push/deploy unknown status
ci/woodpecker/push/arch Pipeline failed
This commit is contained in:
parent
f9a6d585dd
commit
0e8e7223ab
2 changed files with 14 additions and 6 deletions
10
PKGBUILD
10
PKGBUILD
|
|
@ -5,6 +5,7 @@ pkgbase='vieter'
|
|||
pkgname='vieter'
|
||||
pkgver='0.3.0_alpha.2'
|
||||
pkgrel=1
|
||||
pkgdesc="Vieter is a lightweight implementation of an Arch repository server."
|
||||
depends=('glibc' 'openssl' 'libarchive' 'sqlite')
|
||||
makedepends=('git' 'vieter-v')
|
||||
arch=('x86_64' 'aarch64')
|
||||
|
|
@ -17,14 +18,17 @@ build() {
|
|||
cd "$pkgname"
|
||||
|
||||
make prod
|
||||
|
||||
# The default CFLAGS for some reason causes vieter to segfault if used
|
||||
# inside the PKGBUILD. As a workaround, we use tcc to build a debug build
|
||||
# that does work, so we can generate the manpages.
|
||||
CFLAGS= make man
|
||||
}
|
||||
|
||||
package() {
|
||||
pkgdesc="Vieter is a lightweight implementation of an Arch repository server."
|
||||
|
||||
install -dm755 "$pkgdir/usr/bin"
|
||||
install -Dm755 "$pkgname/pvieter" "$pkgdir/usr/bin/vieter"
|
||||
|
||||
install -dm755 "$pkgdir/usr/share/man/man1"
|
||||
"$pkgname/pvieter" man "$pkgdir/usr/share/man/man1"
|
||||
install -Dm644 "$pkgname/man"/*.1 "$pkgdir/usr/share/man/man1"
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue