milis/talimatname/temel/libarchive/talimat

26 lines
460 B
Plaintext
Raw Normal View History

2017-07-14 14:58:24 +02:00
# Description: farklı arşiv tiplerini uygulayan kütüphane
2016-02-24 01:27:23 +01:00
# URL: http://people.freebsd.org/~kientzle/libarchive
2017-07-14 14:58:24 +02:00
# Packager: milisarge
2017-07-15 00:54:30 +02:00
# Depends on:
2016-02-24 01:27:23 +01:00
name=libarchive
2017-07-15 00:54:30 +02:00
version=3.3.2
2016-02-24 01:27:23 +01:00
release=1
source=(http://www.libarchive.org/downloads/libarchive-$version.tar.gz
)
build() {
2017-07-14 14:58:24 +02:00
cd $name-$version
2016-02-24 01:27:23 +01:00
2017-07-15 00:54:30 +02:00
autoreconf -fi
./configure \
--prefix=/usr \
--without-xml2 \
--without-nettle \
--disable-static
2017-07-14 14:58:24 +02:00
make
make DESTDIR=$PKG install
2016-02-24 01:27:23 +01:00
2017-07-14 14:58:24 +02:00
}