mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-06 06:58:57 +02:00
43 lines
857 B
Bash
43 lines
857 B
Bash
SUMMARY="An app to make it snow"
|
|
DESCRIPTION="BSnow is a fun replicant that will make it snow in your \
|
|
background."
|
|
HOMEPAGE="https://github.com/HaikuArchives/BSnow"
|
|
COPYRIGHT="2016 François Revol"
|
|
LICENSE="MIT"
|
|
REVISION="2"
|
|
srcGitRev="9606a680f4b5a18eab2567c976f281bacafbdb12"
|
|
SOURCE_URI="https://github.com/HaikuArchives/BSnow/archive/$srcGitRev.tar.gz"
|
|
CHECKSUM_SHA256="f8289a5cb00598d1da6cde88ba196d13533539a4d7f1c10d2b3235758e64ad1c"
|
|
SOURCE_DIR="BSnow-$srcGitRev"
|
|
|
|
ARCHITECTURES="!x86_gcc2 !x86 !x86_64"
|
|
|
|
PROVIDES="
|
|
bsnow = $portVersion
|
|
app:BSnow = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
makefile_engine
|
|
cmd:gcc
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir/BSnow
|
|
cp -r objects.x86-cc2-release/BSnow $appsDir/BSnow
|
|
addAppDeskbarSymlink $appsDir/BSnow/BSnow BSnow
|
|
}
|