#!/usr/bin/make WGET=wget --continue --no-verbose --show-progress --directory-prefix=cache/downloads/ download_extra: # Download unpackaged/third-party software # TODO file ITPs on bugs.debian.org, package for Debian mkdir -p cache/downloads/ # https://gitlab.com/nodiscc/xfce4-terminal-colorschemes -rm -rf config/includes.chroot/usr/share/xfce4/terminal/colorschemes cache/downloads/xfce4-terminal-colorschemes-1.0 $(WGET) https://gitlab.com/nodiscc/xfce4-terminal-colorschemes/-/archive/1.0/xfce4-terminal-colorschemes-1.0.zip unzip -q cache/downloads/xfce4-terminal-colorschemes-1.0.zip -d cache/downloads/ mkdir -p config/includes.chroot/usr/share/xfce4/terminal/ mv cache/downloads/xfce4-terminal-colorschemes-1.0 config/includes.chroot/usr/share/xfce4/terminal/colorschemes # https://github.com/scopatz/nanorc -rm -rf config/includes.chroot/etc/skel/.nano cache/downloads/nano-highlight-master $(WGET) https://github.com/scopatz/nanorc/archive/master.zip -O cache/downloads/nanorc-master.zip unzip -q cache/downloads/nanorc-master.zip -d cache/downloads/ mv cache/downloads/nanorc-master config/includes.chroot/etc/skel/.nano git checkout -- config/includes.chroot/etc/skel/.nanorc echo 'include ~/.nano/*.nanorc' >> config/includes.chroot/etc/skel/.nanorc # https://github.com/az0/cleanerml -rm -rf config/includes.chroot/usr/share/bleachbit/cleaners cache/downloads/cleanerml-master $(WGET) https://github.com/az0/cleanerml/archive/master.zip -O cache/downloads/cleanerml-master.zip unzip -q cache/downloads/cleanerml-master.zip -d cache/downloads/ mkdir -p config/includes.chroot/usr/share/bleachbit/cleaners mv cache/downloads/cleanerml-master/release/* config/includes.chroot/usr/share/bleachbit/cleaners/ # https://github.com/nodiscc/user.js -rm -rf config/includes.chroot/etc/firefox-esr/firefox-esr.js cache/downloads/user.js-dbu $(WGET) https://github.com/nodiscc/user.js/archive/dbu.zip -O cache/downloads/user.js-dbu.zip unzip -q cache/downloads/user.js-dbu.zip -d cache/downloads/ mkdir -p config/includes.chroot/etc/firefox-esr cd cache/downloads/user.js-dbu/ && make systemwide_user.js mv cache/downloads/user.js-dbu/systemwide_user.js config/includes.chroot/etc/firefox-esr/firefox-esr.js # https://github.com/EionRobb/pidgin-opensteamworks/ -mkdir -p config/packages.chroot $(WGET) https://gitlab.com/nodiscc/pidgin-opensteamworks/-/jobs/471942010/artifacts/raw/pidgin-opensteamworks_1.7-buster0-1_amd64.deb -O config/packages.chroot/pidgin-opensteamworks_1.7-buster0-1_amd64.deb # https://addons.mozilla.org/en-US/firefox/addon/keepassxc-browser/ # https://addons.mozilla.org/en-US/firefox/addon/cookie-autodelete/ mkdir -p config/includes.chroot/usr/share/firefox-esr/distribution/extensions/ $(WGET) https://addons.mozilla.org/firefox/downloads/file/3465157/keepassxc_browser-latest-fx.xpi -O config/includes.chroot/usr/share/firefox-esr/distribution/extensions/keepassxc_browser-latest-fx.xpi $(WGET) https://addons.mozilla.org/firefox/downloads/file/3514619/cookie_autodelete-latest-an+fx.xpi -O config/includes.chroot/usr/share/firefox-esr/distribution/extensions/cookie_autodelete-latest-an+fx.xpi # https://www.sublimetext.com/ (non-free) #-rm -rf cache/downloads/sublime_text_3 config/includes.chroot/opt/sublime_text #$(WGET) https://download.sublimetext.com/sublime_text_3_build_3211_x64.tar.bz2 #tar -C cache/downloads -xvf cache/downloads/sublime_text_3_build_3211_x64.tar.bz2 #mkdir -p config/includes.chroot/opt #mv cache/downloads/sublime_text_3 config/includes.chroot/opt/sublime_text