Advertisement
s243a

defaults

Mar 31st, 2019
314
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.23 KB | None | 0 0
  1. #curdir=${curdir:-`pwd`} #This should be already set in the make-tazpup.sh script
  2.  
  3. branch=next64 #This is the repo branch where the packages are located
  4. arch="x86_64" #This must be x86_64 for 64bit versions
  5. prefix="/64"  #If the base slitaz ISO doesn't have 64 bit libraries then it must be installed under a prefix
  6.  
  7. ########## can copy tazpkg into the build system if it isn't on the base ISO ###########
  8. cpytaz_target=0 # "0" means don't copy tazpkg into the target enviornment
  9. cpytaz=0 # "0" means don't copy tazpkg into the build eniovnrment
  10.  
  11. bla=/mnt/sda2
  12.  
  13. ############### If you want to avoid being prompted then specify iso location ########
  14. IMGPUP="$bla/slacko64-6.9.9.9-uefi-k4.9-FF-LO.iso"
  15. IMG="$bla/slitaz-rolling-core64.iso"
  16.  
  17. ################ Build Modes ##############################
  18. xforced=1 #Force Install of pet packages
  19. xmode="local" #Local Build Mode
  20. xinteractive=1
  21.  
  22. ############## User and Desktop Related Stuff ##############################
  23. users='tux,root,spot:jwm' #Deleting this line will make the iso slightly smaller.
  24. install_WM_jwm=1 #TODO write a function to pull this info from the users variable
  25.  
  26. ############ If we don't know where stuff comes from #####################
  27. cpy_unknown=1 #Test to see if we can set this to zero.
  28.  
  29. ############### Choose Applications to Install ###########################
  30. TO_INSTALL_console_editors=( "nano" )
  31. TO_INSTALL_terminal_emulators=( "sakura" "xterm" "urxvt" )
  32. TO_INSTALL_text_editors=( "geany" "leafpad" ) #TODO move leafpad so we can add it to this lixt
  33. TO_INSTALL_graphics=( "mtpaint" )
  34. TO_INSTALL_games=( "nanochess" )
  35. WOOF_CE_PKGS_TO_INSTALL=( "get_java" "pburn" "pclock" "pdiag" "pclock" "pmusic"
  36. "pprocess" "pschedule" "pupzip" "redshiftgui_wrapper" "wallpaper" )
  37.  
  38. ################ Package Locations for the three installation phases ##############
  39.  
  40. # 1st
  41. #Around line number 221 of make-tazpup.sh
  42. #These are mostly terminal type applications
  43. slitaz_preinst_pkg_dir=$curdir/pkgs/core/preinst/$branch
  44.  
  45. # snd
  46. #Around line number 240 of make-tazpup.sh
  47. #Most of these are the packages one would find on a typical SliTaz ISO
  48. slitaz_base_pkg_dir=$curdir/pkgs/core/base/$branch
  49.  
  50. #Maybe install eudev after the core packages have been installed
  51. #This would be around line 255 but it won't re-install unless we add the forced tag.
  52. slitaz_post_patch_pkg_dir=$curdir/pkgs/other/post-patch/$branch
  53.  
  54. #This directory is based on mistfire's TazPup
  55. slitaz_packages_dir=$curdir/pkgs/core/other/$branch       #Around line# 264 of make-tazpup.sh
  56. special_packages_dir=$curdir/pkgs/other/special/$branch   #Around line# 264 of make-tazpup.sh
  57.  
  58. #Currently removed but may bring back
  59. ##Around line #275 of make-tazpup.sh
  60. #custom_packages_dir=
  61.  
  62. #Around line #294 of make-tazpup.sh
  63. converted_aliens_pkg_dir=$curdir/pkgs/other/aliens/$branch
  64.  
  65.  
  66.  
  67. ############# Let's not forget about the dependencies ########################3
  68. slitaz_dependency_pkg_dir=$curdir/pkgs/applications/dependencies/$branch
  69.  
  70. #pkgs/slitaz-base pkgs/slitaz-dependencies pkgs/slitaz-packages pkgs/slitaz-preinst-pkg
  71. #/pkgs/applications/dependencies/next64
  72.  
  73.  
  74. pkg_dirs_to_copy=( "$slitaz_base_pkg_dir" "$slitaz_dependency_pkg_dir" "$slitaz_packages_dir" \
  75.                   "$slitaz_preinst_pkg_dir" )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement