25 lines
729 B
Plaintext
25 lines
729 B
Plaintext
# Description: Binary-decimal and decimal-binary routines for IEEE doubles
|
|
# URL: https://github.com/google/double-conversion
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: cmake
|
|
|
|
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() {
|
|
prt-get isinst ninja && PKGMK_DC+=' -G Ninja'
|
|
cmake -S $name-$version -B build $PKGMK_DC_OPTIONS \
|
|
-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" \
|
|
-DBUILD_SHARED_LIBS=ON \
|
|
-Wno-dev
|
|
|
|
cmake --build build
|
|
DESTDIR=$PKG cmake --install build
|
|
}
|