mirror of
https://github.com/fiso64/slsk-batchdl.git
synced 2024-12-21 22:12:42 +00:00
18 lines
832 B
Bash
18 lines
832 B
Bash
#!/bin/bash
|
|
|
|
### Download dotnet from https://dotnet.microsoft.com/en-us/download/dotnet/6.0
|
|
|
|
# Create directory if it doesn't exist
|
|
mkdir -p slsk-batchdl/bin/zips
|
|
|
|
# For macOS ARM64
|
|
dotnet publish -c Release -r osx-arm64 -p:PublishSingleFile=true -p:PublishTrimmed=true --self-contained true
|
|
rm -f slsk-batchdl/bin/Release/net6.0/osx-arm64/publish/*.pdb
|
|
rm -f slsk-batchdl/bin/zips/sldl_osx-arm64.zip
|
|
zip -r slsk-batchdl/bin/zips/sldl_osx-arm64.zip slsk-batchdl/bin/Release/net6.0/osx-arm64/publish
|
|
|
|
# For macOS x64
|
|
# dotnet publish -c Release -r osx-x64 -p:PublishSingleFile=true -p:PublishTrimmed=true --self-contained true
|
|
# rm -f slsk-batchdl/bin/Release/net6.0/osx-x64/publish/*.pdb
|
|
# rm -f slsk-batchdl/bin/zips/sldl_osx-x64.zip
|
|
# zip -r slsk-batchdl/bin/zips/sldl_osx-x64.zip slsk-batchdl/bin/Release/net6.0/osx-x64/publish
|