Files
haikuports/net-misc/smolcloudtools/smolcloudtools-0.1.1.recipe
Alexander von Gluck IV b9595ac92f net-misc/smolcloudtools: Add v0.1.1.
* Will allow for GCE SSH Auth into Haiku VMs
2022-12-30 17:53:14 -06:00

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/
}