this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Build and install the 'xar' executable, along with a man page

+6
+6
src/xar/CMakeLists.txt
··· 52 52 target_link_libraries(xar system z bz2 xml2 ssl098 crypto098) 53 53 make_fat(xar) 54 54 55 + add_darling_executable(xarexe src/xar.c) 56 + set_target_properties(xarexe PROPERTIES OUTPUT_NAME "xar") 57 + target_link_libraries(xarexe system xar) 58 + 55 59 install(TARGETS xar DESTINATION libexec/darling/usr/lib) 60 + install(TARGETS xarexe DESTINATION libexec/darling/usr/bin) 61 + install(FILES src/xar.1 DESTINATION libexec/darling/usr/share/man/man1) 56 62 InstallSymlink("libxar.1.dylib" "${CMAKE_INSTALL_PREFIX}/libexec/darling/usr/lib/libxar.dylib")