mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
34 lines
1.0 KiB
Makefile
34 lines
1.0 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="iptables"
|
|
PKG_VERSION="1.8.7"
|
|
PKG_SHA256="c109c96bb04998cd44156622d36f8e04b140701ec60531a10668cfdff5e8d8f0"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="http://www.netfilter.org/"
|
|
PKG_URL="http://www.netfilter.org/projects/iptables/files/${PKG_NAME}-${PKG_VERSION}.tar.bz2"
|
|
PKG_DEPENDS_TARGET="toolchain linux:host libmnl libnftnl"
|
|
PKG_LONGDESC="IP packet filter administration."
|
|
PKG_TOOLCHAIN="autotools"
|
|
|
|
post_configure_target() {
|
|
libtool_remove_rpath libtool
|
|
}
|
|
|
|
post_makeinstall_target() {
|
|
mkdir -p ${INSTALL}/usr/config/iptables/
|
|
cp -PR ${PKG_DIR}/config/README ${INSTALL}/usr/config/iptables/
|
|
|
|
mkdir -p ${INSTALL}/etc/iptables/
|
|
cp -PR ${PKG_DIR}/config/* ${INSTALL}/etc/iptables/
|
|
|
|
mkdir -p ${INSTALL}/usr/lib/libreelec
|
|
cp ${PKG_DIR}/scripts/iptables_helper ${INSTALL}/usr/lib/libreelec
|
|
}
|
|
|
|
post_install() {
|
|
enable_service iptables.service
|
|
}
|
|
|