3 Commits

2 changed files with 17 additions and 24 deletions

View File

@@ -1,15 +1,6 @@
#!/usr/bin/env modbuild
pbuild::configure(){
:
}
pbuild::compile(){
:
}
pbuild::install() {
# Get the OS and architecture
os=$(uname -s | tr '[:upper:]' '[:lower:]')
arch=$(uname -m)
@@ -20,24 +11,23 @@ pbuild::install() {
armv7*) arch="arm" ;;
esac
ZIP="${PREFIX}/${P}-${os}${arch}.zip"
ZIP="${SRC_DIR}/${P}-${os}${arch}.zip"
# Copy the zip archive from the build directory
cp -n "${BUILDBLOCK_DIR}/${P}-${os}${arch}.zip" "$ZIP"
# Extract contents directly into PREFIX
unzip -o -q "$ZIP" -d "${PREFIX}"
# Extract contents directly into SRC_DIR
unzip -o -q "$ZIP" -d "${SRC_DIR}"
# Create the bin directory
mkdir -p "${PREFIX}/bin"
# Copy the executable files to the bin directory
find "${PREFIX}/${P}" -maxdepth 1 -type f -perm -111 -exec mv {} "${PREFIX}/bin/" \;
# Move all contents of the zip archive into PREFIX
mv "${PREFIX}/${P}/"* "${PREFIX}/"
rmdir "${PREFIX}/${P}"
# Remove zip archive
rm "$ZIP"
# Clean up the zip file
rm -f "$ZIP"
}
pbuild::compile(){
:
}
pbuild::install() {
# Move all contents of the zip archive into PREFIX
mv "${SRC_DIR}/${P}/"* "${PREFIX}/"
}

View File

@@ -16,3 +16,6 @@ workflow into a single, intuitive package.
# Use software OpenGL explicitly to avoid Vulkan drivers missing error
setenv LIBGL_ALWAYS_SOFTWARE 1
# Because the executable files need to be in the top directory
prepend-path PATH $PREFIX