mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-04-02 10:41:46 -04:00
18 lines
651 B
Makefile
18 lines
651 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2017-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="netbase"
|
|
PKG_VERSION="6.4"
|
|
PKG_SHA256="fa6621826ff1150e581bd90bc3c8a4ecafe5df90404f207db6dcdf2c75f26ad7"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://salsa.debian.org/md/netbase"
|
|
PKG_URL="http://ftp.debian.org/debian/pool/main/n/netbase/netbase_${PKG_VERSION}.tar.xz"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="The netbase package provides data for network services and protocols from the iana db."
|
|
PKG_TOOLCHAIN="manual"
|
|
|
|
makeinstall_target() {
|
|
mkdir -p ${INSTALL}/etc
|
|
cp etc/protocols ${INSTALL}/etc
|
|
cp etc/services ${INSTALL}/etc
|
|
}
|