Provides an automated script to create a release app of Aseprite for macOS. The script automatically downloads the Aseprite source code, an official pre-built SKIA dependency, and creates a macOS app in the users Applications folder.
It is possible to cutomize the building process, to change the Aseprite build version and other settings. See [more](#Build customization)
It is possible to define which Aseprite version should be installed, as well as a different SKIA release.
-
XCode
-
Make
brew install make
-
CMake
brew install cmake
-
Ninja
brew install ninja
-
GNU Sed
brew install gnu-sed
-
GNU Wget
brew install wget
Clone the repository
git clone https://github.com/rapatao/aseprite-macos-build.git
cd aseprite-macos-build
makeASEPRITE_VERSION: defines the Aseprite version;ASEPRITE_DEP: Defines the URL that must be used to download the Aseprite release.SKIA_DEP: Defines the URL that must be used to download the SKIA release.MACOS_ARCH: Defines the macOS architecture. Uses by default the result of the commanduname -m. Tested values:arm64andx86_64MACOS_SDK: Defines the custom path for the macOS SDK.
Ex.:
make ASEPRITE_VERSION=1.3.4 MACOS_ARCH=arm64