Skip to content

Commit

Permalink
Added Buildfile for Tar and included it as dependency in core/Buildfile
Browse files Browse the repository at this point in the history
Will use latest Tar version 1.28
  • Loading branch information
Teemu Rasi committed Aug 6, 2014
1 parent 526debc commit d09b99d
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
1 change: 1 addition & 0 deletions core/Buildfile
Expand Up @@ -45,5 +45,6 @@ depends=(acl
sed
sysfsutils
sysvinit
tar
usbutils
wget)
19 changes: 19 additions & 0 deletions tar/Buildfile
@@ -0,0 +1,19 @@
# Description: GNU Tar
# URL: http://www.gnu.org/software/tar/
# License: GPL

name=tar
version=1.28
release=1
source=(http://ftp.gnu.org/gnu/tar/$name-$version.tar.gz)

build() {
cd $name-$version

./configure --build=$BUILD \
--host=$HOST \
--prefix=/usr

make -j $JOBS
make DESTDIR=$PKG install
}

0 comments on commit d09b99d

Please sign in to comment.