22 lines
520 B
Bash
Executable File
22 lines
520 B
Bash
Executable File
# Clone Upstream
|
|
mkdir -p pika-drivers
|
|
cp -rvf ./* ./pika-drivers/
|
|
cd ./pika-drivers/
|
|
|
|
# Dead PikaOS3 Release Quirk?
|
|
apt update
|
|
apt-get install libglib2.0-0=2.78.0-2 libglib2.0-bin=2.78.0-2 libglib2.0-dev-bin=2.78.0-2 -y --allow-downgrades
|
|
|
|
# Get build deps
|
|
apt-get build-dep ./ -y
|
|
apt-get install curl -y
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | CARGO_HOME=/root/.cargo sh -s -- -y
|
|
|
|
# Build package
|
|
dpkg-buildpackage --no-sign
|
|
|
|
# Move the debs to output
|
|
cd ../
|
|
mkdir -p ./output
|
|
mv ./*.deb ./output/
|