mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
c07f91474d
We may need entries with spaces in makeopts, installopts, and configopts, and at that point we should also convert depends and auth_opts to avoid confusion.
14 lines
611 B
Bash
Executable file
14 lines
611 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=epsilon
|
|
version=15.5.0
|
|
files="https://github.com/numworks/epsilon/archive/refs/tags/${version}.tar.gz ${port}-${version}.tar.gz 38c3b6baaf00863bbd179bce5e9cc42bbdbd0cd485b5bf3bbf4473383591bf83"
|
|
auth_type=sha256
|
|
makeopts=("PLATFORM=simulator" "TARGET=serenity" "SERENITY_INSTALL_ROOT=${SERENITY_INSTALL_ROOT}")
|
|
depends=("SDL2" "libpng" "libjpeg" "freetype")
|
|
launcher_name=Epsilon
|
|
launcher_category=Utilities
|
|
launcher_command=/usr/local/bin/epsilon.elf
|
|
|
|
install() {
|
|
run cp output/release/simulator/serenity/epsilon.elf ${SERENITY_INSTALL_ROOT}/usr/local/bin/
|
|
}
|