From b6861ee24ce4d6ee2564a2d52e900004e70934f9 Mon Sep 17 00:00:00 2001 From: Liav A Date: Sun, 16 Oct 2022 06:50:38 +0300 Subject: [PATCH] Ports: Add GNU tar port --- Ports/AvailablePorts.md | 1 + Ports/tar/package.sh | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100755 Ports/tar/package.sh diff --git a/Ports/AvailablePorts.md b/Ports/AvailablePorts.md index 003e124ffa..8da23cc112 100644 --- a/Ports/AvailablePorts.md +++ b/Ports/AvailablePorts.md @@ -239,6 +239,7 @@ This list is also available at [ports.serenityos.net](https://ports.serenityos.n | [`stpuzzles`](stpuzzles/) | Simon Tatham's Portable Puzzle Collection | | https://www.chiark.greenend.org.uk/~sgtatham/puzzles/ | | [`stress-ng`](stress-ng/) | stress-ng | 0.14.03 | https://github.com/ColinIanKing/stress-ng | | [`Super-Mario`](Super-Mario/) | Super-Mario Clone | | https://github.com/Bennyhwanggggg/Super-Mario-Clone-Cpp | +| [`tar`](tar/) | GNU tar | 1.34 | https://www.gnu.org/software/tar/ | | [`tcl`](tcl/) | Tcl | 8.6.12 | https://www.tcl-lang.org/ | | [`termcap`](termcap/) | GNU termcap | 1.3.1 | https://www.gnu.org/software/termutils/ | | [`thesilversearcher`](thesilversearcher/) | The Silver Searcher: A fast code-searching tool | 2.2.0 | https://github.com/ggreer/the_silver_searcher | diff --git a/Ports/tar/package.sh b/Ports/tar/package.sh new file mode 100755 index 0000000000..e59f36b0e4 --- /dev/null +++ b/Ports/tar/package.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env -S bash ../.port_include.sh +port='tar' +version='1.34' +useconfigure='true' +use_fresh_config_sub='true' +config_sub_paths=('build-aux/config.sub') +files="https://ftp.gnu.org/gnu/tar/tar-${version}.tar.gz tar-${version}.tar.gz 03d908cf5768cfe6b7ad588c921c6ed21acabfb2b79b788d1330453507647aed" +auth_type='sha256' +configopts=( + "--without-selinux" + "--without-posix-acls" + "--without-xattrs" +)