mirror of
https://github.com/Phantop/solus-stuff
synced 2024-11-01 04:14:58 +00:00
23 lines
390 B
Fish
Executable file
23 lines
390 B
Fish
Executable file
#!/usr/bin/fish
|
|
function buildme
|
|
echo Now building (basename $argv)
|
|
cd $argv
|
|
make
|
|
sudo eopkg it --reinstall (basename $argv)*.eopkg
|
|
cd ..
|
|
end
|
|
|
|
cd (dirname (realpath (status -f)))
|
|
|
|
set profile "-punstable-x86_64"
|
|
sudo solbuild init $profile
|
|
sudo solbuild update $profile
|
|
|
|
if test "$argv"
|
|
for i in $argv
|
|
buildme $i
|
|
end
|
|
else
|
|
sudo ./build (cat list)
|
|
end
|