summaryrefslogtreecommitdiff
path: root/tar/build.sh
blob: 104285058599152c3e15ede294730b1710901165 (plain) (blame)
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
#!/bin/bash
name=tar
version=1.32
revision=0
sources=(
    "http://mirror.rit.edu/gnu/${name}/${name}-${version}.tar.gz"
)
build_depends=(
)
depends=(
    "bzip2"
    "gzip"
    "xz"
    "zlib"
)


function prepare() {
    tar xf ${name}-${version}.tar.gz
    cd ${name}-${version}
}

function build() {
    export FORCE_UNSAFE_CONFIGURE=1
    ./configure --prefix=${_prefix} \
        --without-selinux
    make -j${_maxjobs}
}

function package() {
    make install DESTDIR="${_pkgdir}"
}