this repo has no description
1
fork

Configure Feed

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

Install shortcuts for DMGs and PKGs

Fixes #643

+22
+2
CMakeLists.txt
··· 76 76 InstallSymlink(private/etc ${CMAKE_INSTALL_PREFIX}/libexec/darling/etc) 77 77 InstallSymlink(private/var ${CMAKE_INSTALL_PREFIX}/libexec/darling/var) 78 78 79 + install(DIRECTORY share DESTINATION ${CMAKE_INSTALL_PREFIX}) 80 + 79 81 install(FILES etc/resolv.conf 80 82 DESTINATION libexec/darling/etc) 81 83 InstallSymlink(/Volumes/SystemRoot/etc/machine-id ${CMAKE_INSTALL_PREFIX}/libexec/darling/etc/machine-id)
+10
share/applications/darling_dmg.desktop
··· 1 + [Desktop Entry] 2 + Name=Darling .dmg 3 + Comment=Mount .dmg into Darling 4 + Exec=darling shell hdiutil attach %F 5 + Icon=/usr/local/share/dmg.png 6 + Terminal=false 7 + Type=Application 8 + NoDisplay=true 9 + MimeType=application/x-bzip2 10 + Categories=Core;
+10
share/applications/darling_pkg.desktop
··· 1 + [Desktop Entry] 2 + Name=Darling .pkg 3 + Comment=Install .pkg into Darling 4 + Exec=darling shell installer -pkg %F -target / 5 + Icon=/usr/local/share/pkg.png 6 + Terminal=false 7 + Type=Application 8 + NoDisplay=true 9 + MimeType=application/x-xar 10 + Categories=Core;