mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
Ports: Add GNU tar port
This commit is contained in:
parent
2079728a74
commit
b6861ee24c
Notes:
sideshowbarker
2024-07-17 05:43:26 +09:00
Author: https://github.com/supercomputer7 Commit: https://github.com/SerenityOS/serenity/commit/b6861ee24c Pull-request: https://github.com/SerenityOS/serenity/pull/15632 Reviewed-by: https://github.com/timschumi ✅
2 changed files with 14 additions and 0 deletions
|
@ -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 |
|
||||
|
|
13
Ports/tar/package.sh
Executable file
13
Ports/tar/package.sh
Executable file
|
@ -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"
|
||||
)
|
Loading…
Reference in a new issue