Files
Arch-R/packages/network/sshpass/package.mk

22 lines
666 B
Makefile
Raw Normal View History

2021-11-05 09:41:11 +00:00
# SPDX-License-Identifier: GPL-2.0
# Copyright (C) 2021-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="sshpass"
2023-02-12 06:22:56 +00:00
PKG_VERSION="1.10"
PKG_SHA256="ad1106c203cbb56185ca3bad8c6ccafca3b4064696194da879f81c8d7bdfeeda"
2021-11-05 09:41:11 +00:00
PKG_LICENSE="GPLv2"
PKG_SITE="https://sourceforge.net/p/sshpass"
PKG_URL="https://downloads.sourceforge.net/sshpass/sshpass-${PKG_VERSION}.tar.gz"
PKG_DEPENDS_TARGET="toolchain"
PKG_LONGDESC="sshpass: a tool for non-interactive ssh password auth"
pre_configure_target(){
2021-11-23 05:44:23 +00:00
export ac_cv_func_malloc_0_nonnull=yes
export ac_cv_func_realloc_0_nonnull=yes
2021-11-05 09:41:11 +00:00
}
makeinstall_target() {
mkdir -p ${INSTALL}/usr/bin
cp sshpass ${INSTALL}/usr/bin
}