commit 28cd035c9431596ab88118f471fdb17f653b656f Author: EnumDev Date: Tue Dec 30 19:30:38 2025 +0200 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3e58e5f --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +# Exclude bpm archives +*.bpm \ No newline at end of file diff --git a/check-version.sh b/check-version.sh new file mode 100644 index 0000000..5aa8a46 --- /dev/null +++ b/check-version.sh @@ -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" diff --git a/pkg.info b/pkg.info new file mode 100644 index 0000000..b25562c --- /dev/null +++ b/pkg.info @@ -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 diff --git a/source.sh b/source.sh new file mode 100644 index 0000000..b911043 --- /dev/null +++ b/source.sh @@ -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 +}