ssh_askpass updated to v0.2 (#10041)

This commit is contained in:
ilzu
2024-02-03 14:00:24 +00:00
committed by GitHub
parent e6179daf3b
commit 59cbef5956

View File

@@ -0,0 +1,46 @@
SUMMARY="A native Haiku UI for entering SSH passwords / -phrases"
DESCRIPTION="SSH_askpass is a simple ui for authenticating your SSH connections"
HOMEPAGE="https://github.com/ilzu/haiku_ssh_askpass"
COPYRIGHT="2024 Ilmari \"ilzu\" Siiteri"
LICENSE="MIT"
REVISION=1
SOURCE_URI="$HOMEPAGE/archive/refs/tags/v$portVersion.tar.gz"
CHECKSUM_SHA256="e99f84cb19abd55ecb756ce551aaacb68f1662baca96fae98270ee551190b5de"
SOURCE_DIR="haiku_ssh_askpass-$portVersion"
ARCHITECTURES="all"
PROVIDES="
ssh_askpass = $portVersion
cmd:ssh_askpass
"
REQUIRES="
haiku
cmd:ssh
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
makefile_engine
cmd:g++
cmd:make
"
BUILD()
{
make OBJ_DIR=build $jobArgs
make bindcatalogs
}
INSTALL()
{
mkdir -p $binDir
cp build/ssh_askpass $binDir/
mkdir -p $dataDir/profile.d
cp profile.d/ssh_askpass.sh $dataDir/profile.d/
}