mirror of
https://github.com/Phantop/solus-stuff
synced 2024-11-01 04:14:58 +00:00
Phantop
c22a8de338
Removes castor for sucking, starship for being included, dolphin-emu-git because Solus's is up-to-date
24 lines
430 B
Fish
Executable file
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
|