blob: f9c3c3a9dd2e83cc59f7b4a309f3e2d477b93689 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
. ./.vars
cd ${dist_dir}
for line in $(cat ${base_dir}/sources.lst); do
wget -c "$line" || echo ""
done
# Because otherwise it's saved as 'mirror'... *sigh*
wget -O php-7.2.4.tar.xz http://us3.php.net/get/php-7.2.4.tar.xz/from/this/mirror
# git clone https://github.com/voidlinux/void-runit
git clone https://github.com/irssi/irssi
git clone https://github.com/richfelker/musl-cross-make
|