opt/c-ares/Pkgfile

22 lines
533 B
Plaintext
Raw Normal View History

2018-11-03 11:28:09 +01:00
# Description: Asynchronous C DNS library.
# URL: https://c-ares.haxx.se/
# Maintainer: Danny Rawlins, crux at romster dot me
name=c-ares
2023-05-22 22:27:37 +02:00
version=1.19.1
2018-11-03 11:28:09 +01:00
release=1
source=(https://c-ares.haxx.se/download/$name-$version.tar.gz)
build() {
2023-05-22 22:27:37 +02:00
cmake -S $name-$version -B build -G Ninja \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=lib \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
-Wno-dev
2018-11-03 11:28:09 +01:00
2023-05-22 22:27:37 +02:00
cmake --build build
DESTDIR=$PKG cmake --install build
2018-11-03 11:28:09 +01:00
}