Skip to content

[liblrc] create a new port #27023

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

Merged
merged 15 commits into from
Oct 13, 2022
Merged
Show file tree
Hide file tree
Changes from 12 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
40 changes: 40 additions & 0 deletions ports/liblrc/fix-cmake.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 6b2175e..2aa699b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,8 +1,7 @@
cmake_minimum_required(VERSION 3.2.0)
project(LRCTools VERSION 1.0.0)

-set(CMAKE_CXX_FLAGS
- "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -Wextra -Wno-missing-braces")
+set(CMAKE_CXX_STANDARD 11)

include_directories(${CMAKE_CURRENT_LIST_DIR})

@@ -12,7 +11,22 @@ include(CPack)

enable_testing()

-add_subdirectory(third_party)
add_subdirectory(liblrc)
-add_subdirectory(cli)
-add_subdirectory(test)
+# headers
+install(FILES ${PROJECT_SOURCE_DIR}/liblrc/lrc_parser.h
+ ${PROJECT_SOURCE_DIR}/liblrc/lyrics.h
+ ${PROJECT_SOURCE_DIR}/liblrc/utils.h
+ DESTINATION include/liblrc
+)
+# library with unofficial config
+install(TARGETS lrc
+ EXPORT unofficial-liblrcConfig
+ RUNTIME DESTINATION bin
+ LIBRARY DESTINATION lib
+ ARCHIVE DESTINATION lib
+)
+# share/liblrc will be fixed in portfile.cmake
+install(EXPORT unofficial-liblrcConfig
+ NAMESPACE unofficial::
+ DESTINATION share/liblrc
+)
19 changes: 19 additions & 0 deletions ports/liblrc/portfile.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO ywh233/LRC-Tools
REF 1fc3872320cd449933bffefc6527928262ee0629
SHA512 5b0a52a557ffb28554b33e77efb3832944facfd4e039d8afe60c322d56872eb12cb93f3974d17f083c659dcddf9c63075d3b09ba6abd3adba7b40b2ffb615f1c
PATCHES
set_up_compile_error.patch
fix-cmake.patch
)

vcpkg_cmake_configure(SOURCE_PATH ${SOURCE_PATH})
vcpkg_cmake_install()
vcpkg_cmake_config_fixup(CONFIG_PATH share/liblrc PACKAGE_NAME unofficial-liblrc)

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

file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
13 changes: 13 additions & 0 deletions ports/liblrc/set_up_compile_error.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/liblrc/lyrics.cc b/liblrc/lyrics.cc
index b1a8c87..4fa16fa 100644
--- a/liblrc/lyrics.cc
+++ b/liblrc/lyrics.cc
@@ -5,7 +5,7 @@
//******************************************

#include "lyrics.h"
-
+#include <limits>
#include <assert.h>

#include <algorithm>
18 changes: 18 additions & 0 deletions ports/liblrc/vcpkg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "liblrc",
"version": "1.0.0",
"description": "Tools for parsing and playing back LRC lyrics.",
"homepage": "https://github.com/ywh233/LRC-Tools",
"license": null,
"supports": "!osx",
"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 @@ -3852,6 +3852,10 @@
"baseline": "0.31",
"port-version": 2
},
"liblrc": {
"baseline": "1.0.0",
"port-version": 0
},
"liblsl": {
"baseline": "1.16.0",
"port-version": 0
Expand Down
9 changes: 9 additions & 0 deletions versions/l-/liblrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"versions": [
{
"git-tree": "a93aba0a682f18848e4dd8edd6468368dc8c25c8",
"version": "1.0.0",
"port-version": 0
}
]
}