Initial commit

This commit is contained in:
2025-12-30 19:30:38 +02:00
commit 28cd035c94
4 changed files with 126 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
# Exclude bpm archives
*.bpm
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
# Github repository
REPO="luvit/luv"
# Get tag name using Github Rest API
TAG_NAME=$(curl -s -L -H "X-GitHub-Api-Version: 2022-11-28" -H "Authorization: token ${GITHUB_API_TOKEN}" https://api.github.com/repos/"$REPO"/releases/latest | jq -r '.tag_name')
# Repalce '-' with '_'
VERSION=${TAG_NAME//-/_}
echo "$VERSION"
+42
View File
@@ -0,0 +1,42 @@
name: libluv
description: Bare libuv bindings for lua
version: 1.51.0_1
revision: 1
url: https://github.com/luvit/luv
license: Apache-2.0
architecture: any
type: source
make_depends:
- cmake
- libuv
- lua
- lua5.1
- lua5.2
- lua5.3
- luajit
downloads:
- url: https://github.com/luvit/luv/releases/download/${BPM_PKG_VERSION//_/-}/luv-${BPM_PKG_VERSION//_/-}.tar.gz
extract_to: ${BPM_SOURCE}
extract_strip_components: 1
checksum: dc706d9141c185bdce08b6fc8a9d4df05c3ac3676809ee4e9e37e1553d821237
split_packages:
- name: libluv
depends:
- libuv
- luajit
- name: lua-luv
depends:
- libuv
- lua
- name: lua5.3-luv
depends:
- libuv
- lua5.3
- name: lua5.2-luv
depends:
- libuv
- lua5.2
- name: lua5.1-luv
depends:
- libuv
- lua5.1
+70
View File
@@ -0,0 +1,70 @@
# This is the source.sh script. It is executed by BPM in a temporary directory when compiling a source package
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
# The build function is executed in the source directory
# This function is used to compile the source code
build() {
for ver in 5.1 5.2 5.3 5.4; do
bin=/usr/bin/lua$ver
incdir=/usr/include/lua$ver
if [ "$ver" == "5.4" ]; then
bin=/usr/bin/lua
incdir=/usr/include
fi
cmake -B build-lua$ver -DCMAKE_INSTALL_PREFIX=/usr \
-DLUA="$bin" \
-DLUA_INCDIR="$incdir" \
-DLUADIR=/usr/share/lua/$ver \
-DLIBDIR=/usr/lib/lua/$ver \
-DWITH_SHARED_LIBUV=ON \
-DLUA_BUILD_TYPE=System
cmake --build build-lua$ver
done
cmake -B build -DCMAKE_INSTALL_PREFIX=/usr \
-DWITH_SHARED_LIBUV=ON \
-DLUA_BUILD_TYPE=System \
-DBUILD_MODULE=OFF \
-DBUILD_SHARED_LIBS=ON \
-DCMAKE_INSTALL_PREFIX=/usr
cmake --build build
}
# The package function is executed in the source directory
# This function is used to move the compiled files into the output directory
package_libluv() {
DESTDIR="$BPM_OUTPUT" cmake --install build
# Install package license
install -Dm644 "$BPM_SOURCE"/LICENSE.txt "$BPM_OUTPUT"/usr/share/licenses/libluv/LICENSE.txt
}
package_lua-luv() {
DESTDIR="$BPM_OUTPUT" cmake --install build-lua5.4
# Install package license
install -Dm644 "$BPM_SOURCE"/LICENSE.txt "$BPM_OUTPUT"/usr/share/licenses/libluv/LICENSE.txt
}
package_lua5.3-luv() {
DESTDIR="$BPM_OUTPUT" cmake --install build-lua5.3
# Install package license
install -Dm644 "$BPM_SOURCE"/LICENSE.txt "$BPM_OUTPUT"/usr/share/licenses/libluv/LICENSE.txt
}
package_lua5.2-luv() {
DESTDIR="$BPM_OUTPUT" cmake --install build-lua5.2
# Install package license
install -Dm644 "$BPM_SOURCE"/LICENSE.txt "$BPM_OUTPUT"/usr/share/licenses/libluv/LICENSE.txt
}
package_lua5.1-luv() {
DESTDIR="$BPM_OUTPUT" cmake --install build-lua5.1
# Install package license
install -Dm644 "$BPM_SOURCE"/LICENSE.txt "$BPM_OUTPUT"/usr/share/licenses/libluv/LICENSE.txt
}