iglunix/base/curl/build.sh

40 lines
645 B
Bash
Raw Normal View History

2022-02-12 13:31:24 +00:00
pkgver=7.81.0
2021-05-12 08:58:24 +00:00
pkg_ver=$(echo $pkgver | tr '.' '_')
2021-01-17 19:15:45 +00:00
pkgname=curl
pkgrel=1
2021-09-11 08:24:20 +00:00
mkdeps="samu:cmake"
deps="openssl"
2021-01-17 19:15:45 +00:00
bad=""
fetch() {
2021-05-12 08:58:24 +00:00
curl -L "https://github.com/curl/curl/releases/download/curl-$pkg_ver/curl-$pkgver.tar.xz" -o $pkgname-$pkgver.tar.gz
2021-01-17 19:15:45 +00:00
tar -xf $pkgname-$pkgver.tar.gz
}
build() {
cd $pkgname-$pkgver
mkdir build
cd build
cmake -G Ninja ../ \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
2022-02-12 13:31:24 +00:00
-DCMAKE_INSTALL_LIBDIR=lib \
-DCURL_CA_BUNDLE="/etc/ssl/cert.pem"
2021-01-17 19:15:45 +00:00
samu
}
package() {
cd $pkgname-$pkgver
cd build
DESTDIR=$pkgdir samu install
}
2022-02-12 13:31:24 +00:00
backup() {
return
2021-01-17 19:15:45 +00:00
}
license() {
cd $pkgname-$pkgver
cat COPYING
}