chore: add ruby and solidus packages for windows

This commit is contained in:
xeruf 2022-09-23 00:37:26 +02:00
parent 379344ac26
commit c2aff5bc18
10 changed files with 25 additions and 2 deletions

6
groups/solidus Normal file
View File

@ -0,0 +1,6 @@
git
fossil
ruby
imagemagick
sass
shared-mime-info

View File

@ -1,2 +1,3 @@
chocolatey chocolatey
powershell.ps1 powershell.ps1
windows

View File

@ -0,0 +1 @@
miniconda3 --params="/AddToPath:1"

View File

@ -0,0 +1 @@

1
packages/git/chocolatey Normal file
View File

@ -0,0 +1 @@

View File

@ -0,0 +1 @@

2
packages/ruby/chocolatey Normal file
View File

@ -0,0 +1,2 @@
ruby
msys2

1
packages/sass/chocolatey Normal file
View File

@ -0,0 +1 @@

View File

@ -0,0 +1,9 @@
#!/bin/sh -e
test -f "$FREEDESKTOP_MIME_TYPES_PATH" && exit 0
cd "C:\\ProgramData\\"
version=2.2
name="shared-mime-info-$version"
curl https://gitlab.freedesktop.org/xdg/shared-mime-info/-/archive/$version/$name.zip >"$name.zip"
7z x -y "$name.zip" || unzip "$name.zip"
setx FREEDESKTOP_MIME_TYPES_PATH "C:\\ProgramData\\$name\\data\\freedesktop.org.xml.in"
rm -v "$name.zip"