Chimera Linux package #1784
z-erica
started this conversation in
Suggestions
Replies: 2 comments 1 reply
-
Thank you for pointing out! I have added it now. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Warning 0.6.4 contains a severe mistake which results in locale data being installed to /usr/share/locale/locale instead of /usr/share/locale. The following patch fixes this issue: --- a/CMakeLists.txt 2024-06-20 16:58:49.621362389 -0500
+++ b/CMakeLists.txt 2024-06-20 16:59:11.965458767 -0500
@@ -1246,7 +1246,7 @@
install(DIRECTORY papers DESTINATION ${CMAKE_INSTALL_DOCDIR}/other)
install(FILES LICENSE DESTINATION ${CMAKE_INSTALL_DATADIR}/licenses/furnace)
list(APPEND DEPENDENCIES_DEFINES LOCALE_DIR="${CMAKE_INSTALL_LOCALEDIR}")
- install(DIRECTORY po/locale DESTINATION ${CMAKE_INSTALL_LOCALEDIR})
+ install(DIRECTORY po/locale/ DESTINATION ${CMAKE_INSTALL_LOCALEDIR})
if (WITH_DEMOS OR WITH_INSTRUMENTS OR WITH_WAVETABLES)
set(FURNACE_DATADIR ${CMAKE_INSTALL_FULL_DATADIR}/furnace)
if (WITH_DEMOS) 0.6.5 will contain this fix, but I cannot release until June 25... |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
hello! i have packaged furnace tracker for the contrib repository of the chimera linux distribution: https://pkgs.chimera-linux.org/package/current/contrib/x86_64/furnace. it's not on repology, so it would be cool if it can be added to packages list in the readme
Beta Was this translation helpful? Give feedback.
All reactions