Warning, /utilities/ark/plugins/CLI-README is written in an unsupported language. File is not indexed.
0001 In this folder is a general template of what one needs to implement 0002 support for a plugin using the cli interface in ark. 0003 0004 Here are the steps. 0005 0006 1. First, create a copy of the cliplugin folder 0007 2. Change plugins/CMakeLists.txt to include the new subfolder 0008 3. Rename the kerfuffle_cli.json_TEMPLATE to a unique name, for example 0009 kerfuffle_rar.json. 0010 4. Fill in the parts in the json metadata marked with TODO 0011 5. Update the plugins/yourplugin/CMakeLists.txt file, replacing all 0012 instances of kerfuffle_cli with kerfuffle_yourplugin (where yourplugin 0013 must be a unique plugin name) 0014 6. Implement/modify cliplugin.cpp to fit your archive type. 0015 Refer to kerfuffle/cliinterface.h for explanations on the values that 0016 needs to be implemented. The class name does not need to be changed 0017 0018 Then finally, email the plugin to the ark maintainer for a code review before 0019 it is committed to master :D 0020 0021 Have fun