Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[projectm-eval] Add new port #38550

Merged
merged 2 commits into from
May 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions ports/projectm-eval/portfile.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO projectM-visualizer/projectm-eval
REF "v${VERSION}"
SHA512 "ff5abf4c5deb5a665ed116a1a7a56cfaa0acedc6c211b16ef0c118bc1316f256667681c999c31880dd3aa6aec5ab92ce0747c42ba1ab98ac5046b6ef015de935"
HEAD_REF master
)

vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
OPTIONS
-DBUILD_NS_EEL_SHIM=ON
-DCMAKE_DISABLE_FIND_PACKAGE_BISON=ON
-DCMAKE_DISABLE_FIND_PACKAGE_FLEX=ON
)

vcpkg_cmake_install()

vcpkg_cmake_config_fixup(
PACKAGE_NAME "projectm-eval"
CONFIG_PATH "lib/cmake/projectM-Eval"
)

vcpkg_fixup_pkgconfig()

file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")

vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE.md")
file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
4 changes: 4 additions & 0 deletions ports/projectm-eval/usage
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
projectm-eval provides CMake targets:

find_package(projectM-Eval REQUIRED)
LilyWangLL marked this conversation as resolved.
Show resolved Hide resolved
target_link_libraries(main PRIVATE projectM::Eval)
17 changes: 17 additions & 0 deletions ports/projectm-eval/vcpkg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"name": "projectm-eval",
"version": "1.0.0",
Blaquewithaq marked this conversation as resolved.
Show resolved Hide resolved
"description": "The projectM Expression Evaluation Library. A portable drop-in replacement of Milkdrop's \"ns-eel2\" expression parser for use in Milkdrop, projectM and other applications.",
"homepage": "https://github.com/projectM-visualizer/projectm-eval",
"license": "MIT",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
]
}
4 changes: 4 additions & 0 deletions versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -6964,6 +6964,10 @@
"baseline": "9.4.0",
"port-version": 0
},
"projectm-eval": {
"baseline": "1.0.0",
"port-version": 0
},
"prometheus-cpp": {
"baseline": "1.2.4",
"port-version": 0
Expand Down
9 changes: 9 additions & 0 deletions versions/p-/projectm-eval.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"versions": [
{
"git-tree": "3c32881926b002ddd0fa05b351774ebe69f81fa1",
"version": "1.0.0",
"port-version": 0
}
]
}