12 lines
423 B
Bash
Executable File
12 lines
423 B
Bash
Executable File
#! /bin/bash
|
|
echo -e "Package: *\nPin: release a=experimental\nPin-Priority: 600" > /etc/apt/preferences.d/0-pika-debian-settings
|
|
rm -rfv ./generated-output
|
|
mkdir -p ./generated-output
|
|
mkdir -p ./generated-output/bin-names-of-src-lists
|
|
chmod +x ./scripts/get-bin-name-from-src.sh
|
|
chmod +x ./scripts/gen-apt-config.py
|
|
apt-get update -y
|
|
apt-get install -y python3-numpy
|
|
./scripts/gen-apt-config.py
|
|
./scripts/gen-bin-lists.py
|