commit 1c03c2104d30b1857984e436374f9c61bf9a4b73 Author: EnumDev Date: Thu May 8 17:15:42 2025 +0300 Initial Commit diff --git a/pkg.info b/pkg.info new file mode 100644 index 0000000..b80cef2 --- /dev/null +++ b/pkg.info @@ -0,0 +1,8 @@ +name: p7zip +description: Default package description +version: 17.04 +url: https://github.com/p7zip-project/p7zip +license: LGPL,custom +architecture: any +depends: ["gcc"] +type: source diff --git a/source.sh b/source.sh new file mode 100644 index 0000000..016691d --- /dev/null +++ b/source.sh @@ -0,0 +1,41 @@ +# This is the source.sh script. It is executed by BPM in a temporary directory when compiling a source package +# 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://github.com/p7zip-project/p7zip/archive/v${BPM_PKG_VERSION}/p7zip-${BPM_PKG_VERSION}.tar.gz" +FILENAME="${DOWNLOAD##*/}" + +# 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() { + wget "$DOWNLOAD" + tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE" + + cd "$BPM_SOURCE" + # Disable manual page compression + sed '/^gzip/d' -i install.sh + + # Security vulnerability fix + sed -i '160a if(_buffer == nullptr || _size == _pos) return E_FAIL;' CPP/7zip/Common/StreamObjects.cpp +} + +# The build function is executed in the source directory +# This function is used to compile the source code +build() { + make all3 +} + +# The check function is executed in the source directory +# This function is used to run tests to verify the package has been compiled correctly +check() { + make test +} + +# The package function is executed in the source directory +# This function is used to move the compiled files into the output directory +package() { + make DEST_HOME=/usr DEST_MAN=/usr/share/man DEST_DIR="$BPM_OUTPUT" install + + install -d "$BPM_OUTPUT"/usr/share/licenses/p7zip + ln -s -t "$BPM_OUTPUT"/usr/share/licenses/p7zip/ /usr/share/doc/p7zip/DOC/{License.txt,unRarLicense.txt} +}