2022-02-05 14:23:32 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
# Copyright (C) 2019-present Shanti Gilbert (https://github.com/shantigilbert)
|
2023-10-24 16:00:57 +00:00
|
|
|
# Copyright (C) 2023 JELOS (https://github.com/JustEnoughLinuxOS)
|
2022-02-05 14:23:32 +00:00
|
|
|
|
|
|
|
PKG_NAME="empty"
|
2023-05-09 19:21:47 +00:00
|
|
|
PKG_VERSION="0.6.23c"
|
2022-02-05 14:23:32 +00:00
|
|
|
PKG_ARCH="any"
|
|
|
|
PKG_LICENSE="GPL"
|
|
|
|
PKG_SITE="http://empty.sourceforge.net/"
|
|
|
|
PKG_DEPENDS_TARGET="toolchain linux"
|
2023-02-24 13:53:43 +00:00
|
|
|
PKG_URL="http://downloads.sourceforge.net/sourceforge/${PKG_NAME}/${PKG_NAME}-${PKG_VERSION}.tgz"
|
2022-02-05 14:23:32 +00:00
|
|
|
PKG_SECTION="sysutils"
|
|
|
|
PKG_SHORTDESC="Run applications under pseudo-terminal sessions"
|
|
|
|
PKG_LONGDESC="Run applications under pseudo-terminal sessions"
|
|
|
|
|
|
|
|
PKG_IS_ADDON="no"
|
|
|
|
PKG_AUTORECONF="no"
|
|
|
|
|
|
|
|
make_target() {
|
2023-02-24 13:53:43 +00:00
|
|
|
make CC=${CC}
|
2022-02-05 14:23:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
makeinstall_target() {
|
2023-02-24 13:53:43 +00:00
|
|
|
mkdir -p ${INSTALL}/usr/bin
|
|
|
|
cp empty ${INSTALL}/usr/bin/
|
2022-02-05 14:23:32 +00:00
|
|
|
}
|