mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 01:09:25 +00:00
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.
17 lines
275 B
Bash
Executable File
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
|