1
0
Fork 0
mirror of https://github.com/Phantop/solus-stuff synced 2024-11-01 04:14:58 +00:00
solus-stuff/build
Phantop c22a8de338 Remove some packages that are in official repos
Removes castor for sucking, starship for being included, dolphin-emu-git because Solus's is up-to-date
2020-12-23 15:43:55 -05:00

24 lines
430 B
Fish
Executable file

#!/usr/bin/fish
set profile "-punstable-x86_64"
function buildme
echo Now building (basename $argv)
cd $argv
sudo solbuild build package.yml -d $profile
sudo eopkg it --reinstall (basename $argv)*.eopkg
cd ..
end
cd (dirname (realpath (status -f)))
sudo solbuild init $profile
sudo solbuild update $profile
if test "$argv"
for i in $argv
buildme $i
end
else
sudo ./build (cat list)
end