ports: Fix packaging of bunch of ports

This commit is contained in:
2026-08-25 15:32:54 +03:00
parent aca9f459ed
commit b20a1640b2
14 changed files with 29 additions and 16 deletions
+4 -2
View File
@@ -17,9 +17,11 @@ configure() {
}
build() {
./b2 --user-config=user-config.jam toolset=gcc target-os=banan_os || exit 1
./b2 --user-config=user-config.jam \
toolset=gcc target-os=banan_os || exit 1
}
install() {
./b2 --user-config=user-config.jam toolset=gcc target-os=banan_os install || exit 1
./b2 --user-config=user-config.jam --prefix="$DESTDIR/usr" \
toolset=gcc target-os=banan_os install || exit 1
}