add Arch Linux section on Download page (it is available now)?
Posted by
frantic1048 on
Oct 27, 2016; 8:55am
URL: http://piano-booster.139.s1.nabble.com/add-Arch-Linux-section-on-Download-page-it-is-available-now-tp7572668.html
I just make an Arch Linux package for piano booster:
https://aur.archlinux.org/packages/pianobooster/

(click to view full resolution)
Arch Linux users can use AUR helpers like yaourt to install:
yaourt pianobooster
Could you add a section for Arch Linux on this Download page ?
http://pianobooster.sourceforge.net/download.htmlBTW, I found some issues on src/CMakeLists.txt during building.
On Line 7:
LINK_LIBRARIES (asound)
should be
LINK_LIBRARIES (asound pthread GL)
to make GCC find these needed libs.
And Line 16:
SET_TARGET_PROPERTIES(pianobooster PROPERTIES LINK_FLAGS "-mwindows")
The "-mwindows" flag is not for GCC on Linux, it seems for GCC on Cygwin/MinGW.
Maybe this flag should in previous WIN32 block.
I made a small patch make things work.
https://aur.archlinux.org/cgit/aur.git/tree/fix-missing-libs-and-useless-flag.patch?h=pianoboosterWould you consider fixing them in upstream ?