48 lines
1.1 KiB
Bash
Executable File
48 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
MASON_NAME=nunicode
|
|
MASON_VERSION=1.5.1
|
|
MASON_LIB_FILE=lib/libnu.a
|
|
MASON_PKGCONFIG_FILE=lib/pkgconfig/nu.pc
|
|
|
|
. ${MASON_DIR}/mason.sh
|
|
|
|
function mason_load_source {
|
|
mason_download \
|
|
https://bitbucket.org/alekseyt/nunicode/get/1.5.1.tar.bz2 \
|
|
d85a6cd2d779db3503034762f56fd094ea6f5def
|
|
mason_extract_tar_bz2
|
|
|
|
export MASON_BUILD_PATH=${MASON_ROOT}/.build/alekseyt-nunicode-01c8e4ebc740
|
|
}
|
|
|
|
function mason_compile {
|
|
mkdir -p build-dir
|
|
cd build-dir
|
|
|
|
# patch CMakeLists file
|
|
cat ../CMakeLists.txt | sed -e '/find_package.Sqlite3/ s/^/#/' > ../CMakeLists.txt.new && cp ../CMakeLists.txt.new ../CMakeLists.txt
|
|
|
|
cmake \
|
|
-DCMAKE_BUILD_TYPE=RELEASE \
|
|
-DCMAKE_INSTALL_PREFIX=${MASON_PREFIX} \
|
|
${MASON_CMAKE_TOOLCHAIN} \
|
|
..
|
|
|
|
make install -j${MASON_CONCURRENCY}
|
|
}
|
|
|
|
function mason_cflags {
|
|
echo -I${MASON_PREFIX}/include
|
|
}
|
|
|
|
function mason_ldflags {
|
|
: # We're only using the full path to the archive, which is output in static_libs
|
|
}
|
|
|
|
function mason_clean {
|
|
make clean
|
|
}
|
|
|
|
mason_run "$@"
|