mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
19 lines
643 B
Makefile
19 lines
643 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2017-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="netbase"
|
|
PKG_VERSION="6.1"
|
|
PKG_SHA256="084d743bd84d4d9380bac4c71c51e57406dce44f5a69289bb823c903e9b035d8"
|
|
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
|
|
}
|