2023-08-08 06:08:55 -06:00
|
|
|
#!/bin/bash
|
|
|
|
# building phase
|
|
|
|
cd working
|
|
|
|
git clone https://aur.archlinux.org/paru-bin.git
|
|
|
|
cd paru-bin
|
|
|
|
makepkg
|
|
|
|
mv ./*.pkg.tar.zst ../../x86_64
|
|
|
|
|
2023-08-08 06:22:35 -06:00
|
|
|
cd working
|
|
|
|
git clone https://aur.archlinux.org/mkinitcpio-openswap.git
|
|
|
|
cd mkinitcpio-openswap
|
|
|
|
makepkg
|
|
|
|
mv ./*.pkg.tar.zst ../../x86_64
|
|
|
|
|
|
|
|
cd working
|
|
|
|
git clone https://aur.archlinux.org/ckbcomp.git
|
|
|
|
cd ckbcomp
|
|
|
|
makepkg
|
|
|
|
mv ./*.pkg.tar.zst ../../x86_64
|
|
|
|
|
|
|
|
cd working
|
|
|
|
git clone https://aur.archlinux.org/calamares.git
|
|
|
|
cd calamares
|
|
|
|
makepkg
|
|
|
|
mv ./*.pkg.tar.zst ../../x86_64
|
|
|
|
|
2023-08-08 06:08:55 -06:00
|
|
|
# packaging phase
|
2023-08-08 05:50:18 -06:00
|
|
|
# x86_64
|
2023-08-08 06:08:55 -06:00
|
|
|
rm ./x86_64/obos-core-repo.db
|
|
|
|
rm ./x86_64/obos-core-repo.files
|
2023-08-08 05:50:18 -06:00
|
|
|
repo-add ./x86_64/obos-core-repo.db.tar.gz ./x86_64/*.pkg.tar.zst
|
|
|
|
mv ./x86_64/obos-core.repo.files.tar.gz ./x86_64/obos-core.repo.files
|
|
|
|
mv ./x86_64/obos-core.repo.db.tar.gz ./x86_64/obos-core.repo.db
|