Update URL and download

This commit is contained in:
2025-09-05 14:42:37 +03:00
parent f4757b6096
commit 0c24d951c7
3 changed files with 11 additions and 10 deletions
+5 -5
View File
@@ -1,9 +1,9 @@
#!/bin/bash #!/bin/bash
# Gitea repository # Github repository
REPO="EnumDev/enit" REPO="EnumeratedDev/enit"
# Get version from tag name using Gitea Rest API # Get tag name using Github Rest API
VERSION=$(curl -s -L https://git.enumerated.dev/api/v1/repos/$REPO/tags/ | jq -r '.[0]'.name) TAG_NAME=$(curl -s -L -H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" https://api.github.com/repos/"$REPO"/tags | jq -r '.[0].name')
echo "$VERSION" echo "$TAG_NAME"
+3 -2
View File
@@ -1,7 +1,8 @@
name: enit name: enit
description: EnumDev's init system description: The official init system for Tide Linux
version: 0.2.0 version: 0.2.0
url: https://git.enumerated.dev/EnumDev/enit revision: 2
url: https://github.com/EnumeratedDev/enit
license: MIT license: MIT
architecture: any architecture: any
dependencies: ["util-linux"] dependencies: ["util-linux"]
+3 -3
View File
@@ -2,13 +2,12 @@
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE # 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 # BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
REPO="https://git.enumerated.dev/EnumDev/enit.git" REPO="https://github.com/EnumeratedDev/enit.git"
# The prepare function is executed in the root of the temp directory # The prepare function is executed in the root of the temp directory
# This function is used for downloading files and putting them into the correct location # This function is used for downloading files and putting them into the correct location
prepare() { prepare() {
git clone "$REPO" --branch "${BPM_PKG_VERSION}" --single-branch "$BPM_SOURCE" git clone --depth 1 --branch "${BPM_PKG_VERSION}" "$REPO" "$BPM_SOURCE"
cd "$BPM_SOURCE"
} }
# The build function is executed in the source directory # The build function is executed in the source directory
@@ -31,5 +30,6 @@ package() {
# Symlink enit to /sbin/init # Symlink enit to /sbin/init
ln -sf /sbin/enit "$BPM_OUTPUT"/usr/sbin/init ln -sf /sbin/enit "$BPM_OUTPUT"/usr/sbin/init
# Install package license
install -Dm644 LICENSE "$BPM_OUTPUT"/usr/share/licenses/enit/LICENSE install -Dm644 LICENSE "$BPM_OUTPUT"/usr/share/licenses/enit/LICENSE
} }