diff --git a/pkg.info b/pkg.info index 47e58d2..bcfb531 100644 --- a/pkg.info +++ b/pkg.info @@ -1,5 +1,5 @@ name: filesystem description: The Tide Linux filesystem -version: 1.0 +version: 1.1 architecture: any type: source diff --git a/source-files/lsb-release b/source-files/lsb-release index fc06abf..59f154a 100644 --- a/source-files/lsb-release +++ b/source-files/lsb-release @@ -1,3 +1,3 @@ DISTRIB_ID="TideLinux" -DISTRIB_RELEASE="0.3" -DISTRIB_DESCRIPTION="Tide Linux 0.3 (Alpha)" +DISTRIB_RELEASE="0.4" +DISTRIB_DESCRIPTION="Tide Linux 0.4 (Alpha)" diff --git a/source-files/os-release b/source-files/os-release index 7d3ef71..a9cfaf2 100644 --- a/source-files/os-release +++ b/source-files/os-release @@ -1,4 +1,4 @@ -PRETTY_NAME="Tide Linux 0.3 (Alpha)" +PRETTY_NAME="Tide Linux 0.4 (Alpha)" NAME="Tide Linux" -VERSION="0.3" +VERSION="0.4" ID=tide diff --git a/source-files/shells b/source-files/shells new file mode 100644 index 0000000..c2cdaa0 --- /dev/null +++ b/source-files/shells @@ -0,0 +1 @@ +/bin/sh diff --git a/source.sh b/source.sh index 7deff35..48a511a 100644 --- a/source.sh +++ b/source.sh @@ -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 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 # This function is used to move the compiled files into the output directory package() { @@ -58,6 +55,7 @@ package() { cp "$BPM_WORKDIR"/nsswitch.conf "$BPM_OUTPUT"/etc/nsswitch.conf cp "$BPM_WORKDIR"/os-release "$BPM_OUTPUT"/etc/os-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 }