opt/double-conversion/Pkgfile

23 lines
670 B
Plaintext

# Description: Binary-decimal and decimal-binary routines for IEEE doubles
# URL: https://github.com/google/double-conversion
# Maintainer: Tim Biermann, tbier at posteo dot de
name=double-conversion
version=3.3.0
release=1
source=(https://github.com/google/double-conversion/archive/v$version/$name-v$version.tar.gz)
build() {
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" \
-D BUILD_SHARED_LIBS=ON \
-Wno-dev
cmake --build build
DESTDIR=$PKG cmake --install build
}