aboutsummaryrefslogtreecommitdiff
path: root/ports/fluidlite
diff options
context:
space:
mode:
Diffstat (limited to 'ports/fluidlite')
-rw-r--r--ports/fluidlite/CONTROL4
-rw-r--r--ports/fluidlite/portfile.cmake31
2 files changed, 35 insertions, 0 deletions
diff --git a/ports/fluidlite/CONTROL b/ports/fluidlite/CONTROL
new file mode 100644
index 000000000..b591dcf02
--- /dev/null
+++ b/ports/fluidlite/CONTROL
@@ -0,0 +1,4 @@
+Source: fluidlite
+Version: 2020-08-27
+Homepage: https://github.com/divideconcept/FluidLite
+Description: FluidLite is a very light version of FluidSynth designed to be hardware, platform and external dependency independant.
diff --git a/ports/fluidlite/portfile.cmake b/ports/fluidlite/portfile.cmake
new file mode 100644
index 000000000..707fcd720
--- /dev/null
+++ b/ports/fluidlite/portfile.cmake
@@ -0,0 +1,31 @@
+if(EXISTS "${CURRENT_INSTALLED_DIR}/include/fluidsynth/settings.h")
+ message(FATAL_ERROR "Can't build fluidlite if fluidsynth is installed. Please remove fluidsynth, and try to install fluidlite again if you need it.")
+endif()
+
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO divideconcept/FluidLite
+ REF fdd05bad03cdb24d1f78b5fe3453842890c1b0e8
+ SHA512 8118bec2cb5ee48b8064ed2111610f1917ee8e6f1dc213121b2311d056da21d7f618ef50735e7653d2cccf1e96652f3ccf026101fccb9863448008918add53e0
+ HEAD_REF master
+)
+
+string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" FLUIDLITE_BUILD_STATIC)
+string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "dynamic" FLUIDLITE_BUILD_SHARED)
+
+vcpkg_configure_cmake(
+ SOURCE_PATH ${SOURCE_PATH}
+ PREFER_NINJA
+ OPTIONS
+ -DFLUIDLITE_BUILD_STATIC=${FLUIDLITE_BUILD_STATIC}
+ -DFLUIDLITE_BUILD_SHARED=${FLUIDLITE_BUILD_SHARED}
+ -DCMAKE_WINDOWS_EXPORT_ALL_SYMBOLS=ON
+)
+
+vcpkg_install_cmake()
+
+# Remove unnecessary files
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
+
+# Handle copyright
+file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)