Guest User

Untitled

a guest
Jan 16th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. /* Add packages with IDs : touhou, first-fantasy as targets */
  2. milky_add_target( "touhou" );
  3.  
  4. /* Done setting configuration, let's inform the library */
  5. milky_check_config();
  6.  
  7. /* Ok, now the operations, and this is going to be our order
  8. * 1. Synchorize - Download database from server, or merge updated database if we already got one.
  9. * 2. Install our targets. */
  10. milky_sync_database();
  11. milky_install();
  12.  
  13. /* We can queue stuff like this even that you already have something installing. */
  14. milky_clear_targets();
  15. milky_set_target_dir( DESKTOP_PATH );
  16. milky_add_target( "first-fantasy");
  17. milky_check_config();
  18. milky_install();
Add Comment
Please, Sign In to add comment