blob: 4a47446cc07472d03bbc60fdfa99128387baa3aa [file] [log] [blame]
/*
* Copyright (C) 2019 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.ndkports
import java.io.File
object : AutoconfPort() {
override val name = "curl"
override val version = "7.66.0"
override val url = "https://curl.haxx.se/download/curl-$version.tar.gz"
override val licensePath = "COPYING"
override val license = License(
"The curl License", "https://curl.haxx.se/docs/copyright.html"
)
override val dependencies = listOf("openssl")
override val modules = listOf(
Module(
"curl",
dependencies = listOf("//openssl:crypto", "//openssl:ssl")
)
)
override fun configureArgs(
workingDirectory: File,
toolchain: Toolchain
): List<String> {
val sslPrefix = installDirectoryForPort(
"openssl",
workingDirectory,
toolchain
).absolutePath
return listOf(
"--disable-ntlm-wb",
"--enable-ipv6",
"--with-zlib",
"--with-ca-path=/system/etc/security/cacerts",
"--with-ssl=$sslPrefix"
)
}
}