mirror of
https://github.com/outbackdingo/ports.git
synced 2026-02-06 01:16:26 +00:00
21 lines
555 B
Plaintext
21 lines
555 B
Plaintext
# description : utf8proc
|
|
# homepage : https://github.com/JuliaStrings
|
|
|
|
name=utf8proc
|
|
version=2.9.0
|
|
release=1
|
|
source="$name-$version.tar.gz::https://github.com/JuliaStrings/$name/archive/refs/tags/v$version.tar.gz"
|
|
|
|
build() {
|
|
cmake -S $name-$version -B build \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=lib \
|
|
-DCMAKE_INSTALL_LIBEXECDIR=lib \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_C_FLAGS_RELEASE="$CFLAGS" \
|
|
-DCMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
|
|
-Wno-dev
|
|
cmake --build build
|
|
DESTDIR=$PKG cmake --install build
|
|
}
|