mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-21 19:20:08 +02:00
44 lines
830 B
Bash
44 lines
830 B
Bash
SUMMARY="Small tools for guests running in the cloud"
|
|
DESCRIPTION="A small collection of tools to help guest operating systems \
|
|
running in a variety of cloud environments."
|
|
HOMEPAGE="https://github.com/kallisti5/smolcloudtools"
|
|
COPYRIGHT="2022 Alexander von Gluck IV"
|
|
LICENSE="MIT"
|
|
REVISION="1"
|
|
SOURCE_URI="https://github.com/kallisti5/smolcloudtools/archive/refs/tags/v$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="af156b3b8ae4d57391d5fd519e0558a67d54e3be07c04a3a6c7f9e58d5018617"
|
|
|
|
ARCHITECTURES="?x86_gcc2 all"
|
|
|
|
PROVIDES="
|
|
smolcloudtools = $portVersion
|
|
cmd:gce_metadata_ssh = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
lib:libcurl
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
devel:libcurl
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:g++
|
|
cmd:ld
|
|
cmd:make
|
|
cmd:pkg_config
|
|
"
|
|
|
|
|
|
BUILD()
|
|
{
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $binDir
|
|
cp gce_metadata_ssh $binDir/
|
|
}
|