aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/anax
diff options
context:
space:
mode:
authorEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
committerEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
commit54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch)
treed915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/anax
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/anax')
-rw-r--r--vcpkg/ports/anax/Add-bin-output.patch10
-rw-r--r--vcpkg/ports/anax/osx-arm.patch15
-rw-r--r--vcpkg/ports/anax/portfile.cmake26
-rw-r--r--vcpkg/ports/anax/vcpkg.json14
4 files changed, 65 insertions, 0 deletions
diff --git a/vcpkg/ports/anax/Add-bin-output.patch b/vcpkg/ports/anax/Add-bin-output.patch
new file mode 100644
index 0000000..333a92f
--- /dev/null
+++ b/vcpkg/ports/anax/Add-bin-output.patch
@@ -0,0 +1,10 @@
+--- a/CMakeLists.txt Tue Oct 13 13:47:40 2015
++++ b/CMakeLists.txt Tue Dec 06 11:13:23 2016
+@@ -161,6 +161,7 @@
+ # Library files
+ install(
+ TARGETS ${ANAX_LIBRARY_NAME}
++ RUNTIME DESTINATION bin
+ LIBRARY DESTINATION lib
+ ARCHIVE DESTINATION lib
+ )
diff --git a/vcpkg/ports/anax/osx-arm.patch b/vcpkg/ports/anax/osx-arm.patch
new file mode 100644
index 0000000..450cd82
--- /dev/null
+++ b/vcpkg/ports/anax/osx-arm.patch
@@ -0,0 +1,15 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index d427767..80965bc 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -154,10 +154,6 @@ set_target_properties(${ANAX_LIBRARY_NAME} PROPERTIES
+ SOVERSION ${ANAX_VERSION_MAJOR}
+ )
+
+-if(APPLE)
+- set_target_properties(${ANAX_LIBRARY_NAME} PROPERTIES OSX_ARCHITECTURES "i386;x86_64;")
+-endif()
+-
+ # Library files
+ install(
+ TARGETS ${ANAX_LIBRARY_NAME}
diff --git a/vcpkg/ports/anax/portfile.cmake b/vcpkg/ports/anax/portfile.cmake
new file mode 100644
index 0000000..56c9156
--- /dev/null
+++ b/vcpkg/ports/anax/portfile.cmake
@@ -0,0 +1,26 @@
+vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
+
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO miguelmartin75/anax
+ REF v2.1.0
+ SHA512 b573733b5f9634bf8cfc5b0715074f9a8ee29ecb48dc981d9371254a1f6ff8afbbb9ba6aa0877d53e518e5486ecc398a6d331fb9b5dbfd17d8707679216e11a3
+ HEAD_REF master
+ PATCHES
+ Add-bin-output.patch
+ osx-arm.patch
+)
+
+vcpkg_cmake_configure(
+ SOURCE_PATH "${SOURCE_PATH}"
+ DISABLE_PARALLEL_CONFIGURE
+)
+
+vcpkg_cmake_install()
+
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
+
+# Handle copyright
+file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
+
+vcpkg_copy_pdbs()
diff --git a/vcpkg/ports/anax/vcpkg.json b/vcpkg/ports/anax/vcpkg.json
new file mode 100644
index 0000000..fbaeb17
--- /dev/null
+++ b/vcpkg/ports/anax/vcpkg.json
@@ -0,0 +1,14 @@
+{
+ "name": "anax",
+ "version": "2.1.0",
+ "port-version": 8,
+ "description": "An open source C++ entity system.",
+ "homepage": "https://github.com/miguelmartin75/anax",
+ "license": "MIT",
+ "dependencies": [
+ {
+ "name": "vcpkg-cmake",
+ "host": true
+ }
+ ]
+}