Update URL and download

This commit is contained in:
2025-09-05 14:42:09 +03:00
parent 3e0dd27e12
commit 7fc300c04e
3 changed files with 9 additions and 8 deletions
+5 -5
View File
@@ -1,9 +1,9 @@
#!/bin/bash #!/bin/bash
# Gitea repository # Github repository
REPO="EnumDev/bpm" REPO="EnumeratedDev/bpm"
# 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: bpm name: bpm
description: A simple Linux package manager description: The official package manager for Tide Linux
version: 0.5.0 version: 0.5.0
url: https://git.enumerated.dev/EnumDev/bpm revision: 2
url: https://github.com/EnumeratedDev/bpm
license: MIT license: MIT
architecture: any architecture: any
depends: ["bash"] depends: ["bash"]
+1 -1
View File
@@ -2,7 +2,7 @@
# 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/bpm.git" REPO="https://github.com/EnumeratedDev/bpm.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