|
root / base / tar
tar Plain Text 43 lines 834 B
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/bash
# Build script for GNU tar

set -e
cd "$SRCDIR"

# GNU tar configure refuses to run as root by default
export FORCE_UNSAFE_CONFIGURE=1

./configure \
    --build=$BUILD_TRIPLE \
    --host=$BUILD_TRIPLE \
    --prefix=$PREFIX \
    --disable-nls

gmake -j${JOBS:-1}
gmake install DESTDIR="$PKGDIR"
# GNU Tar - Tape archiver
# https://www.gnu.org/software/tar/

[package]
name = "tar"
version = "1.35"
release = 1
description = "GNU tar archiving utility"
url = "https://www.gnu.org/software/tar/"
license = "GPL-3.0"
maintainer = "Chris Tusa <chris.tusa@leafscale.com>"
arch = "x86_64"

[dependencies]
runtime = []
build = []

[[source]]
file = "tar-1.35.tar.xz"
urls = ["https://ftp.gnu.org/gnu/tar/tar-1.35.tar.xz"]
checksum = "4d62ff37342ec7aed748535323930c7cf94acf71c3591882b26a7ea50f3edc16"


[build]
parallel = true