1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 19:37:35 +00:00

Ports: Add cowsay

This commit is contained in:
Tim Ledbetter 2023-07-26 17:28:35 +01:00 committed by Jelle Raaijmakers
parent ecef13338e
commit 6ba38494c5
2 changed files with 26 additions and 0 deletions

25
Ports/cowsay/package.sh Executable file
View file

@ -0,0 +1,25 @@
#!/usr/bin/env -S bash ../.port_include.sh
port='cowsay'
version='3.04'
depends=('perl5')
useconfigure='false'
files="https://github.com/tnalpgge/rank-amateur-cowsay/archive/refs/tags/cowsay-${version}.tar.gz cowsay-${version}.tar.gz d8b871332cfc1f0b6c16832ecca413ca0ac14d58626491a6733829e3d655878b"
workdir="rank-amateur-cowsay-cowsay-${version}/"
prefix='/usr/local'
bin_path="${prefix}/bin"
cow_path_prefix="${prefix}/share"
perl_executable="${bin_path}/perl"
build() {
run_replace_in_file "s#%PREFIX%#${prefix}#" cowsay
run_replace_in_file "s#%BANGPERL%#!${perl_executable}#" cowsay
}
install() {
run_nocd mkdir -p "${SERENITY_INSTALL_ROOT}/${bin_path}/"
run cp cowsay "${SERENITY_INSTALL_ROOT}/${bin_path}/"
run_nocd mkdir -p "${SERENITY_INSTALL_ROOT}/${cow_path_prefix}/"
run cp -r cows/ "${SERENITY_INSTALL_ROOT}/${cow_path_prefix}/"
run_nocd ln -sf "${bin_path}/cowsay" "${SERENITY_INSTALL_ROOT}/${bin_path}/cowthink"
}