mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 22:48:55 +02:00
44 lines
977 B
Bash
44 lines
977 B
Bash
SUMMARY="Recreates Matrix' falling characters in Terminal"
|
|
DESCRIPTION="neo recreates the digital rain effect \
|
|
from \"The Matrix\". Streams of random characters will \
|
|
endlessly scroll down your terminal screen."
|
|
HOMEPAGE="https://github.com/st3w/neo"
|
|
COPYRIGHT="2021 Stewart Reive"
|
|
LICENSE="GNU GPL v3"
|
|
REVISION="1"
|
|
SOURCE_URI="https://github.com/st3w/neo/releases/download/v$portVersion/neo-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="a55e4ed5efd0a4af248d16018a7aaad3b617ef1d3ac05d292a258a38aaf46a79"
|
|
|
|
ARCHITECTURES="all !x86_gcc2"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
neo$secondaryArchSuffix = $portVersion
|
|
cmd:neo = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libncursesw$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libncursesw$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:awk
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
./configure --prefix=$prefix --mandir=$manDir
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
}
|