11 lines
249 B
Text
Executable file
11 lines
249 B
Text
Executable file
name=libarchive
|
|
version=3.4.0
|
|
source=(https://github.com/libarchive/libarchive/releases/download/v$version/libarchive-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/tools --without-xml2 --disable-shared
|
|
make
|
|
make install
|
|
}
|