summaryrefslogtreecommitdiff
path: root/repo/core/tar.xibuild
blob: b39e00a757cf5c821f4fd5e56fbfdb54442d0e04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

DEPS=(glibc)

SOURCE=https://ftp.gnu.org/gnu/tar/tar-1.34.tar.xz
DESC="Utility used to store, backup and transport files"

build () {
    FORCE_UNSAFE_CONFIGURE=1
    ./configure --prefix=/usr
    make
    make DESTDIR=$PKG_DEST install
}