Updated distro version to 0.4 Alpha

This commit is contained in:
CapCreeperGR
2024-07-08 12:02:56 +00:00
parent 972eaf1fec
commit 41d444811f
5 changed files with 7 additions and 8 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: filesystem name: filesystem
description: The Tide Linux filesystem description: The Tide Linux filesystem
version: 1.0 version: 1.1
architecture: any architecture: any
type: source type: source
+2 -2
View File
@@ -1,3 +1,3 @@
DISTRIB_ID="TideLinux" DISTRIB_ID="TideLinux"
DISTRIB_RELEASE="0.3" DISTRIB_RELEASE="0.4"
DISTRIB_DESCRIPTION="Tide Linux 0.3 (Alpha)" DISTRIB_DESCRIPTION="Tide Linux 0.4 (Alpha)"
+2 -2
View File
@@ -1,4 +1,4 @@
PRETTY_NAME="Tide Linux 0.3 (Alpha)" PRETTY_NAME="Tide Linux 0.4 (Alpha)"
NAME="Tide Linux" NAME="Tide Linux"
VERSION="0.3" VERSION="0.4"
ID=tide ID=tide
+1
View File
@@ -0,0 +1 @@
/bin/sh
+1 -3
View File
@@ -2,9 +2,6 @@
# 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
DOWNLOAD="https://wwww.my-url.com/file.tar.gz"
FILENAME="${DOWNLOAD##*/}"
# The package function is executed in the source directory # The package function is executed in the source directory
# This function is used to move the compiled files into the output directory # This function is used to move the compiled files into the output directory
package() { package() {
@@ -58,6 +55,7 @@ package() {
cp "$BPM_WORKDIR"/nsswitch.conf "$BPM_OUTPUT"/etc/nsswitch.conf cp "$BPM_WORKDIR"/nsswitch.conf "$BPM_OUTPUT"/etc/nsswitch.conf
cp "$BPM_WORKDIR"/os-release "$BPM_OUTPUT"/etc/os-release cp "$BPM_WORKDIR"/os-release "$BPM_OUTPUT"/etc/os-release
cp "$BPM_WORKDIR"/lsb-release "$BPM_OUTPUT"/etc/lsb-release cp "$BPM_WORKDIR"/lsb-release "$BPM_OUTPUT"/etc/lsb-release
cp "$BPM_WORKDIR"/shells "$BPM_OUTPUT"/etc/shells
echo "tidelinux" > "$BPM_OUTPUT"/etc/hostname echo "tidelinux" > "$BPM_OUTPUT"/etc/hostname
} }