21 lines
494 B
Bash
Executable File
21 lines
494 B
Bash
Executable File
# Add dependent repositories
|
|
wget -q -O - https://ppa.pika-os.com/key.gpg | sudo apt-key add -
|
|
add-apt-repository https://ppa.pika-os.com
|
|
add-apt-repository ppa:pikaos/pika
|
|
add-apt-repository ppa:kubuntu-ppa/backports
|
|
# Clone Upstream
|
|
git clone https://github.com/lassekongo83/adw-gtk3
|
|
cp -rvf ./debian ./adw-gtk3/
|
|
cd ./adw-gtk3
|
|
|
|
# Get build deps
|
|
apt-get build-dep ./ -y
|
|
|
|
# Build package
|
|
dpkg-buildpackage --no-tgz-check
|
|
|
|
# Move the debs to output
|
|
cd ../
|
|
mkdir -p ./output
|
|
mv ./*.deb ./output/
|