aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/lely-core
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/lely-core
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/lely-core')
-rw-r--r--vcpkg/ports/lely-core/portfile.cmake28
-rw-r--r--vcpkg/ports/lely-core/vcpkg.json8
2 files changed, 36 insertions, 0 deletions
diff --git a/vcpkg/ports/lely-core/portfile.cmake b/vcpkg/ports/lely-core/portfile.cmake
new file mode 100644
index 0000000..3cbe565
--- /dev/null
+++ b/vcpkg/ports/lely-core/portfile.cmake
@@ -0,0 +1,28 @@
+if(VCPKG_TARGET_IS_LINUX)
+ message("${PORT} currently requires the following tools and libraries from the system package manager:\n autoconf\n automake\n libtool\n \nThese can be installed on Ubuntu systems via apt-get install autoconf automake libtool")
+endif()
+
+vcpkg_from_gitlab(
+ GITLAB_URL https://gitlab.com/
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO lely_industries/lely-core
+ REF "v${VERSION}"
+ SHA512 0beab1b5cbc987065c230c8dd5ac2aa16971712478ecb6ad25b3018fc80016f59305e87423fedca8561af5eba782107b418162cc03c568c559417747a64f8a46
+ HEAD_REF master
+)
+
+vcpkg_configure_make(
+ SOURCE_PATH "${SOURCE_PATH}"
+ AUTOCONFIG
+ OPTIONS
+ "--disable-cython"
+ "--disable-python"
+ "--disable-unit-tests"
+ "--disable-tools"
+)
+vcpkg_install_make()
+
+vcpkg_fixup_pkgconfig()
+
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
+vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")
diff --git a/vcpkg/ports/lely-core/vcpkg.json b/vcpkg/ports/lely-core/vcpkg.json
new file mode 100644
index 0000000..3bbb83e
--- /dev/null
+++ b/vcpkg/ports/lely-core/vcpkg.json
@@ -0,0 +1,8 @@
+{
+ "name": "lely-core",
+ "version": "2.3.5",
+ "description": "The Lely core libraries are a collection of C and C++ libraries and tools, providing hih-performance I/O and sensor/actuator control for robotics and IoT applications",
+ "homepage": "https://gitlab.com/lely_industries/lely-core",
+ "license": "Apache-2.0",
+ "supports": "linux"
+}