1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 03:05:48 +03:00
aports/community/hare-ssh/APKBUILD

32 lines
817 B
Text

# Maintainer: Drew DeVault <sir@cmpwn.com>
pkgname=hare-ssh
pkgver=0_git20230225
_commit=76644828c55f803ae14aee6319fa603888dcdf67
pkgrel=0
pkgdesc="SSH support for Hare"
url="https://sr.ht/~sircmpwn/hare-ssh"
arch="x86_64 aarch64" # hare
license="MPL-2.0"
makedepends="hare"
source="
$pkgname-$_commit.tar.gz::https://git.sr.ht/~sircmpwn/hare-ssh/archive/$_commit.tar.gz
"
builddir="$srcdir/$pkgname-$_commit"
build() {
# Hare actually passes LDFLAGS to LD, not to CC, who would've thunk
unset LDFLAGS
make -j1 PREFIX=/usr
}
check() {
make check
}
package() {
make DESTDIR="$pkgdir" PREFIX=/usr install
}
sha512sums="
b3081c622cec2e0efb6dd8b5906d90da21df2327fa50af32dfbe75243d926bd83d027715121bdf13747c7438a88e5a64d2033732f71f1cebf7107f9a3cdc7133 hare-ssh-76644828c55f803ae14aee6319fa603888dcdf67.tar.gz
"