# Description: a header-only, constexpr alternative to gperf for C++14 users
# URL: https://github.com/serge-sans-paille/frozen
# Maintainer: Tim Biermann, tbier at posteo dot de

name=frozen
version=1.2.0
release=1
source=(https://github.com/serge-sans-paille/frozen/archive/$version/$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 BUILD_TESTING=OFF \
    -D CMAKE_SKIP_RPATH=ON \
    -Wno-dev

  cmake --build build
  DESTDIR=$PKG cmake --install build

  chmod 755 $PKG/usr/include
}
