compat-32/curl-32/Pkgfile

26 lines
692 B
Plaintext
Raw Normal View History

2017-02-15 09:15:13 +01:00
# Description: A tool for transfering files with URL syntax
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
# URL: https://curl.haxx.se/
# Depends on: openssl-32 zlib-32 curl
name=curl-32
2019-02-15 16:03:46 +01:00
version=7.64.0
2017-02-15 09:15:13 +01:00
release=1
2017-08-11 02:10:44 +02:00
source=(https://curl.haxx.se/download/${name%-*}-$version.tar.xz)
2017-02-15 09:15:13 +01:00
build() {
cd ${name%-*}-$version
2017-03-02 12:16:36 +01:00
2017-02-15 09:15:13 +01:00
./configure --prefix=/usr \
--libdir=/usr/lib32 \
--enable-ipv6 \
--without-libidn \
--without-cyassl \
--enable-threaded-resolver \
--with-ca-bundle=/etc/ssl/cert.pem
make
make DESTDIR=$PKG install
2017-08-11 02:10:44 +02:00
rm -r $PKG/usr/{bin,include,share/man,share}
2017-02-15 09:15:13 +01:00
}