From 739c65c54cb0e957df5e9b76f93fb02554e5cac3 Mon Sep 17 00:00:00 2001 From: davidovski Date: Wed, 4 May 2022 23:52:30 +0100 Subject: moved everything to new file formatting --- repo/system/tomlc99/tomlc99.xibuild | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 repo/system/tomlc99/tomlc99.xibuild (limited to 'repo/system/tomlc99/tomlc99.xibuild') diff --git a/repo/system/tomlc99/tomlc99.xibuild b/repo/system/tomlc99/tomlc99.xibuild new file mode 100644 index 0000000..6387c96 --- /dev/null +++ b/repo/system/tomlc99/tomlc99.xibuild @@ -0,0 +1,20 @@ +#!/bin/sh + +MAKEDEPS="make" +DEPS="musl" + +PKG_VER=1.0 +SOURCE=https://github.com/cktan/tomlc99.git +DESC="Library for parsing toml v1.0 compliant files, in c99" + +build () { + make +} + +package () { + mkdir -p $PKG_DEST/usr/lib + mkdir -p $PKG_DEST/usr/include + install toml.h $PKG_DEST/usr/include + install libtoml.so.$PKG_VER $PKG_DEST/usr/lib + ln -s libtoml.so.$PKG_VER $PKG_DEST/usr/lib/libtoml.so +} -- cgit v1.2.1