mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
19 lines
651 B
Makefile
19 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.2"
|
|
PKG_SHA256="309a24146a06347d654b261e9e07a82fab844b173674a42e223803dd8258541e"
|
|
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
|
|
}
|