A duplicate ELSE command was found inside an IF block
A free video editor to cut, filter, and encode projects
Status: Beta
Brought to you by:
mean
-- Packager=deb, valid choices= {deb,rpm,tgz,none}
CMake Error at pluginsPackageDebian.cmake:18 (ELSE):
A duplicate ELSE command was found inside an IF block.
Call Stack (most recent call first):
/home/user/Dev/Avidemux/avidemux_2.7.0/install/usr/include/avidemux/2.7/cmake/admPackager.cmake:18 (include)
CMakeLists.txt:283 (admPackager)
at line 18 you have :
IF(DO_SETTINGS)
SET(CPACK_COMPONENTS_ALL settings)
SET(CPACK_DEBIAN_PACKAGE_NAME "avidemux3-settings")
SET(CPACK_DEBIAN_PACKAGE_DESCRIPTION "Simple video editor, settings ")
ELSE(DO_SETTINGS)
SET(CPACK_COMPONENTS_ALL plugins)
SET(CPACK_DEBIAN_PACKAGE_NAME "avidemux3-plugins-${PLUGIN_EXT}")
SET(CPACK_DEBIAN_PACKAGE_DESCRIPTION "Simple video editor, plugins (${PLUGIN_EXT} ")
ELSE(DO_SETTINGS)
ENDIF(DO_SETTINGS)
seems like the fix is simple
Same here. Looks like there's a github repository https://github.com/mean00/avidemux2/commit/95fc81495544f4c9a79476bbf2c00ec17a49b27e which is actively fixing bugs and might accept PRs? This particular one is fixed assuming that repo is connected to upstream.