├── README.md └── src ├── ubuntu20 ├── .gitignore ├── 01_update.sh ├── 02_tools.sh ├── 03_build_squid.sh ├── 04_install_squid.sh ├── 05_acceptance.sh ├── control.patch └── squid.ver ├── ubuntu22 ├── .gitignore ├── 01_update.sh ├── 02_tools.sh ├── 03_build_squid.sh ├── 04_install_squid.sh ├── 05_acceptance.sh ├── BoolOps.cc.patch └── squid.ver └── ubuntu24 ├── .gitignore ├── 01_update.sh ├── 02_tools.sh ├── 03_build_squid.sh ├── 04_install_squid.sh ├── 05_acceptance.sh └── squid.ver /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diladele/squid-ubuntu/HEAD/README.md -------------------------------------------------------------------------------- /src/ubuntu20/.gitignore: -------------------------------------------------------------------------------- 1 | _acceptance 2 | -------------------------------------------------------------------------------- /src/ubuntu20/01_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diladele/squid-ubuntu/HEAD/src/ubuntu20/01_update.sh -------------------------------------------------------------------------------- /src/ubuntu20/02_tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diladele/squid-ubuntu/HEAD/src/ubuntu20/02_tools.sh -------------------------------------------------------------------------------- /src/ubuntu20/03_build_squid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diladele/squid-ubuntu/HEAD/src/ubuntu20/03_build_squid.sh -------------------------------------------------------------------------------- /src/ubuntu20/04_install_squid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diladele/squid-ubuntu/HEAD/src/ubuntu20/04_install_squid.sh -------------------------------------------------------------------------------- /src/ubuntu20/05_acceptance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diladele/squid-ubuntu/HEAD/src/ubuntu20/05_acceptance.sh -------------------------------------------------------------------------------- /src/ubuntu20/control.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diladele/squid-ubuntu/HEAD/src/ubuntu20/control.patch -------------------------------------------------------------------------------- /src/ubuntu20/squid.ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diladele/squid-ubuntu/HEAD/src/ubuntu20/squid.ver -------------------------------------------------------------------------------- /src/ubuntu22/.gitignore: -------------------------------------------------------------------------------- 1 | _acceptance 2 | -------------------------------------------------------------------------------- /src/ubuntu22/01_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diladele/squid-ubuntu/HEAD/src/ubuntu22/01_update.sh -------------------------------------------------------------------------------- /src/ubuntu22/02_tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diladele/squid-ubuntu/HEAD/src/ubuntu22/02_tools.sh -------------------------------------------------------------------------------- /src/ubuntu22/03_build_squid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diladele/squid-ubuntu/HEAD/src/ubuntu22/03_build_squid.sh -------------------------------------------------------------------------------- /src/ubuntu22/04_install_squid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diladele/squid-ubuntu/HEAD/src/ubuntu22/04_install_squid.sh -------------------------------------------------------------------------------- /src/ubuntu22/05_acceptance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diladele/squid-ubuntu/HEAD/src/ubuntu22/05_acceptance.sh -------------------------------------------------------------------------------- /src/ubuntu22/BoolOps.cc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diladele/squid-ubuntu/HEAD/src/ubuntu22/BoolOps.cc.patch -------------------------------------------------------------------------------- /src/ubuntu22/squid.ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diladele/squid-ubuntu/HEAD/src/ubuntu22/squid.ver -------------------------------------------------------------------------------- /src/ubuntu24/.gitignore: -------------------------------------------------------------------------------- 1 | _acceptance 2 | -------------------------------------------------------------------------------- /src/ubuntu24/01_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diladele/squid-ubuntu/HEAD/src/ubuntu24/01_update.sh -------------------------------------------------------------------------------- /src/ubuntu24/02_tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diladele/squid-ubuntu/HEAD/src/ubuntu24/02_tools.sh -------------------------------------------------------------------------------- /src/ubuntu24/03_build_squid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diladele/squid-ubuntu/HEAD/src/ubuntu24/03_build_squid.sh -------------------------------------------------------------------------------- /src/ubuntu24/04_install_squid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diladele/squid-ubuntu/HEAD/src/ubuntu24/04_install_squid.sh -------------------------------------------------------------------------------- /src/ubuntu24/05_acceptance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diladele/squid-ubuntu/HEAD/src/ubuntu24/05_acceptance.sh -------------------------------------------------------------------------------- /src/ubuntu24/squid.ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diladele/squid-ubuntu/HEAD/src/ubuntu24/squid.ver --------------------------------------------------------------------------------