15 lines
279 B
Bash
15 lines
279 B
Bash
|
|
fetch $TAR_URL
|
|
|
|
cd "$SOURCES" && tar xf tar-$TAR_VERSION.tar.xz && cd tar-$TAR_VERSION
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--host=$TARGET \
|
|
--build=$(build-aux/config.guess) \
|
|
--silent \
|
|
--quiet
|
|
|
|
make && make DESTDIR="$SYSROOT" install
|
|
|
|
cd "$SOURCES" && rm -rf tar-$TAR_VERSION |