mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-26 14:52:11 +08:00
57 lines
1.7 KiB
Bash
57 lines
1.7 KiB
Bash
#
|
|
# Core packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=curl
|
|
pkgver=7.21.6
|
|
pkgrel=1
|
|
pkgdesc="An URL retrival utility and library"
|
|
arch=('i686' 'x86_64')
|
|
url="http://curl.haxx.se"
|
|
license=('MIT')
|
|
depends=('zlib' 'openssl' 'bash' 'ca-certificates' 'libssh2')
|
|
options=('!libtool')
|
|
source=(http://curl.haxx.se/download/${pkgname}-${pkgver}.tar.bz2
|
|
curlbuild.h)
|
|
|
|
[[ $CARCH == "x86_64" ]] && _curlbuild=curlbuild-64.h
|
|
[[ $CARCH == "i686" ]] && _curlbuild=curlbuild-32.h
|
|
md5sums=('6611989a81ebd7b03a35adc3001ddee0'
|
|
'751bd433ede935c8fae727377625a8ae')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
./configure \
|
|
--with-random=/dev/urandom \
|
|
--prefix=/usr \
|
|
--mandir=/usr/share/man \
|
|
--disable-dependency-tracking \
|
|
--enable-ipv6 \
|
|
--disable-ldaps \
|
|
--disable-ldap \
|
|
--enable-manual \
|
|
--enable-versioned-symbols \
|
|
--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt \
|
|
--without-libidn \
|
|
--enable-threaded-resolver
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
make DESTDIR=${pkgdir} install
|
|
install -Dm644 COPYING \
|
|
${pkgdir}/usr/share/licenses/${pkgname}/COPYING
|
|
install -Dm644 docs/libcurl/libcurl.m4 \
|
|
${pkgdir}/usr/share/aclocal/libcurl.m4
|
|
mv "${pkgdir}/usr/include/curl/curlbuild.h" "${pkgdir}/usr/include/curl/${_curlbuild}"
|
|
install -m 644 ${srcdir}/curlbuild.h "${pkgdir}/usr/include/curl/curlbuild.h"
|
|
}
|