Update URL and download
This commit is contained in:
+5
-5
@@ -1,9 +1,9 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Gitea repository
|
||||
REPO="EnumDev/enit"
|
||||
# Github repository
|
||||
REPO="EnumeratedDev/enit"
|
||||
|
||||
# Get version from tag name using Gitea Rest API
|
||||
VERSION=$(curl -s -L https://git.enumerated.dev/api/v1/repos/$REPO/tags/ | jq -r '.[0]'.name)
|
||||
# Get tag name using Github Rest API
|
||||
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"
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
name: enit
|
||||
description: EnumDev's init system
|
||||
description: The official init system for Tide Linux
|
||||
version: 0.2.0
|
||||
url: https://git.enumerated.dev/EnumDev/enit
|
||||
revision: 2
|
||||
url: https://github.com/EnumeratedDev/enit
|
||||
license: MIT
|
||||
architecture: any
|
||||
dependencies: ["util-linux"]
|
||||
|
||||
@@ -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 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
|
||||
# This function is used for downloading files and putting them into the correct location
|
||||
prepare() {
|
||||
git clone "$REPO" --branch "${BPM_PKG_VERSION}" --single-branch "$BPM_SOURCE"
|
||||
cd "$BPM_SOURCE"
|
||||
git clone --depth 1 --branch "${BPM_PKG_VERSION}" "$REPO" "$BPM_SOURCE"
|
||||
}
|
||||
|
||||
# The build function is executed in the source directory
|
||||
@@ -31,5 +30,6 @@ package() {
|
||||
# Symlink enit to /sbin/init
|
||||
ln -sf /sbin/enit "$BPM_OUTPUT"/usr/sbin/init
|
||||
|
||||
# Install package license
|
||||
install -Dm644 LICENSE "$BPM_OUTPUT"/usr/share/licenses/enit/LICENSE
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user