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

DEPS=(glibc)

SOURCE=https://git.savannah.gnu.org/git/tar.git
DESC="Utility used to store, backup and transport files"

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