generated from cosmic-packages/cosmic-applets
Update main.sh
This commit is contained in:
parent
7bd321e04f
commit
e5bda04a69
13
main.sh
13
main.sh
@ -13,7 +13,18 @@ git clone https://github.com/pop-os/cosmic-settings.git
|
|||||||
cd cosmic-settings
|
cd cosmic-settings
|
||||||
|
|
||||||
# Get build deps
|
# Get build deps
|
||||||
awk '{gsub(/(,[ \t]*)?cargo(,[ \t]*)?|,[ \t]*cargo|cargo(,[ \t]*)?/, ""); gsub(/(,[ \t]*)?rustc(,[ \t]*)?|,[ \t]*rustc|rustc(,[ \t]*)?/, ""); print}' ./debian/control > ./debian/control.tmp && mv ./debian/control.tmp ./debian/control
|
awk '
|
||||||
|
BEGIN { ORS="" }
|
||||||
|
{
|
||||||
|
while (match($0, /(^|[^a-zA-Z0-9_-])(cargo|rustc)([^a-zA-Z0-9_-]|$)/)) {
|
||||||
|
printf "%s", substr($0, 1, RSTART - 1)
|
||||||
|
$0 = substr($0, RSTART + RLENGTH)
|
||||||
|
if (match($0, /^[, \t]*/))
|
||||||
|
$0 = substr($0, RLENGTH + 1)
|
||||||
|
}
|
||||||
|
print $0 "\n"
|
||||||
|
}
|
||||||
|
' ./debian/control > ./debian/control.tmp && mv ./debian/control.tmp ./debian/control
|
||||||
apt-get build-dep ./ -y
|
apt-get build-dep ./ -y
|
||||||
apt-get install curl -y
|
apt-get install curl -y
|
||||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | CARGO_HOME=/root/.cargo sh -s -- -y
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | CARGO_HOME=/root/.cargo sh -s -- -y
|
||||||
|
Loading…
x
Reference in New Issue
Block a user