Files
ladybird/Ports/nyancat/nyancat.sh
Andreas Kling db48dfcaaf Ports: Add "nyancat" port :^)
This is a cute little program for testing out your terminal's color
support, and it also works pretty well as a general stress test.
2019-09-06 20:34:21 +02:00

17 lines
275 B
Bash
Executable File

#!/bin/sh
PORT_DIR=nyancat
fetch() {
run_fetch_git "https://github.com/klange/nyancat.git"
run_patch serenity-changes.patch -p1
}
configure() {
echo
}
build() {
run_make
}
install() {
run_make_install DESTDIR="$SERENITY_ROOT"/Root
}
. ../.port_include.sh