Commit | Line | Data |
---|---|---|
6dca1d21 JB |
1 | # Description: Library to create and read several archive formats |
2 | # URL: http://people.freebsd.org/~kientzle/libarchive/ | |
3 | # Maintainer: CRUX System Team, core-ports at crux dot nu | |
4 | # Arch Maintainer: CRUX-ARM System Team, crux-arm at mikeux dot dyndns dot org | |
5 | # Depends on: bzip2 zlib | |
6 | ||
7 | name=libarchive | |
4900c8cb | 8 | version=2.7.1 |
6dca1d21 JB |
9 | release=1 |
10 | source=(http://$name.googlecode.com/files/$name-$version.tar.gz) | |
11 | ||
12 | build() { | |
13 | cd libarchive-$version | |
14 | ./configure --build=$CHOST \ | |
15 | --host=$CTARGET \ | |
16 | --prefix=/usr \ | |
17 | --mandir=/usr/man \ | |
18 | --disable-xattr | |
19 | make | |
20 | make DESTDIR=$PKG install | |
21 | } |