18 lines
509 B
Makefile
18 lines
509 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="lshw"
|
|
PKG_VERSION="B.02.19.2"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="http://ezix.org/project/wiki/HardwareLiSter"
|
|
PKG_URL="http://ezix.org/software/files/${PKG_NAME}-${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="A small tool to provide detailed information on the hardware configuration of the machine."
|
|
|
|
make_target() {
|
|
make CXX=${CXX} -C src/
|
|
}
|
|
|
|
makeinstall_target() {
|
|
: # nop
|
|
}
|