mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-25 11:56:18 +00:00
eeab3d92b4
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
18 lines
564 B
Makefile
18 lines
564 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="dtach"
|
|
PKG_VERSION="0.9"
|
|
PKG_SHA256="5f7e8c835ee49a9e6dcf89f4e8ccbe724b061c0fc8565b504dd8b3e67ab79f82"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="http://dtach.sourceforge.net"
|
|
PKG_URL="https://github.com/crigler/dtach/archive/v${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="A program that emulates the detach feature of screen."
|
|
PKG_BUILD_FLAGS="-sysroot"
|
|
|
|
makeinstall_target() {
|
|
mkdir -p ${INSTALL}/usr/bin
|
|
cp -p dtach ${INSTALL}/usr/bin
|
|
}
|