diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/cello | |
Diffstat (limited to 'vcpkg/ports/cello')
| -rw-r--r-- | vcpkg/ports/cello/CMakeLists.txt | 30 | ||||
| -rw-r--r-- | vcpkg/ports/cello/portfile.cmake | 26 | ||||
| -rw-r--r-- | vcpkg/ports/cello/vcpkg.json | 18 |
3 files changed, 74 insertions, 0 deletions
diff --git a/vcpkg/ports/cello/CMakeLists.txt b/vcpkg/ports/cello/CMakeLists.txt new file mode 100644 index 0000000..333323c --- /dev/null +++ b/vcpkg/ports/cello/CMakeLists.txt @@ -0,0 +1,30 @@ +cmake_minimum_required(VERSION 3.14)
+
+project(cello LANGUAGES C)
+
+include(GNUInstallDirs)
+
+file(GLOB cello_sources src/*.c)
+add_library(cello ${cello_sources})
+
+target_include_directories(
+ cello
+ PUBLIC
+ $<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/include>
+ $<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>
+)
+
+set_target_properties(cello PROPERTIES PUBLIC_HEADER include/Cello.h)
+
+if(ANDROID AND ANDROID_NATIVE_API_LEVEL LESS "33")
+ target_compile_definitions(cello PRIVATE CELLO_NSTRACE)
+endif()
+
+install(TARGETS cello EXPORT unofficial-cello-config)
+
+install(
+ EXPORT unofficial-cello-config
+ NAMESPACE unofficial::cello::
+ DESTINATION share/unofficial-cello
+ PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ
+)
diff --git a/vcpkg/ports/cello/portfile.cmake b/vcpkg/ports/cello/portfile.cmake new file mode 100644 index 0000000..59a0497 --- /dev/null +++ b/vcpkg/ports/cello/portfile.cmake @@ -0,0 +1,26 @@ +vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
+
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO orangeduck/Cello
+ REF da28eefbc95d8bd5628e5f1c4cc12bc1b13fef4f
+ SHA512 64825cf37223dd679b379d78475218a543690c3b78333acb906d42982261df4b9ada3a87bea183fad5e2cf220311904e657b0bf5051b141c389d5ee1d2974e5b
+ HEAD_REF master
+)
+
+file(COPY "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" DESTINATION "${SOURCE_PATH}")
+
+vcpkg_cmake_configure(
+ SOURCE_PATH "${SOURCE_PATH}"
+)
+
+vcpkg_cmake_install()
+
+vcpkg_copy_pdbs()
+
+vcpkg_cmake_config_fixup(PACKAGE_NAME unofficial-${PORT})
+
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
+
+# Handle copyright
+configure_file("${SOURCE_PATH}/LICENSE.md" "${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright" COPYONLY)
diff --git a/vcpkg/ports/cello/vcpkg.json b/vcpkg/ports/cello/vcpkg.json new file mode 100644 index 0000000..58a8aeb --- /dev/null +++ b/vcpkg/ports/cello/vcpkg.json @@ -0,0 +1,18 @@ +{ + "name": "cello", + "version-date": "2019-07-23", + "port-version": 4, + "description": "Higher level programming in C", + "homepage": "https://libcello.org/", + "license": "BSD-2-Clause-Views", + "dependencies": [ + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ] +} |