22 lines
607 B
Plaintext
22 lines
607 B
Plaintext
# Description: UTF-8 with C++ in a Portable Way
|
|
# URL: https://github.com/nemtrif/utfcpp
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
|
|
name=utfcpp
|
|
version=4.0.5
|
|
release=1
|
|
source=(https://github.com/nemtrif/utfcpp/archive/refs/tags/v$version.tar.gz)
|
|
renames=($name-$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" \
|
|
-Wno-dev
|
|
cmake --build build
|
|
DESTDIR=$PKG cmake --install build
|
|
}
|