git: build-block reviewed

This commit is contained in:
2024-10-18 17:25:03 +02:00
parent 16e8f798e6
commit 319dde3b73
3 changed files with 24 additions and 7 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/env modbuild
unset -f pbuild::configure
unset -f pbuild::compile
pbuild::install(){
install -m 0755 git-lfs "${PREFIX}/bin"
install -m 0755 -d "${PREFIX}/share/man/man{1,5,7}"
install -m 0644 man/man1/* "${PREFIX}/share/man/man1"
install -m 0644 man/man5/* "${PREFIX}/share/man/man5"
install -m 0644 man/man7/* "${PREFIX}/share/man/man7"
}
# Local Variables:
# mode: sh
# sh-basic-offset: 8
# tab-width: 8
# End: