diff --git a/pkg.info b/pkg.info index a25d550..b87306e 100644 --- a/pkg.info +++ b/pkg.info @@ -1,10 +1,9 @@ name: iproute2 description: IP Routing utilities -version: 6.7.0 -revision: 2 +version: 6.14.0 url: https://www.kernel.org/pub/linux/utils/net/iproute2/ -license: GPL2 +license: GPL2-or-later architecture: any -depends: ["bash","coreutils","glibc","libcap","libelf","zlib","libmnl"] -make_depends: ["bash","bison","coreutils","flex","gcc","glibc","make","libcap","libelf","pkgconf","zlib"] +depends: ["glibc","libcap","libelf","iptables"] +optional_depends: ["python3"] type: source diff --git a/source.sh b/source.sh index 7cf5a5e..1a1c82e 100644 --- a/source.sh +++ b/source.sh @@ -15,21 +15,18 @@ prepare() { # The build function is executed in the source directory # This function is used to compile the source code build() { + # arpd depends on berkely DB which is not included in Tide Linux at the moment sed -i /ARPD/d Makefile rm -fv man/man8/arpd.8 + make NETNS_RUN_DIR=/run/netns } -# The check function is executed in the source directory -# This function is used to run tests to verify the package has been compiled correctly -check() { - make check -} - # The package function is executed in the source directory # This function is used to move the compiled files into the output directory package() { make SBINDIR=/usr/sbin DESTDIR="$BPM_OUTPUT" install - mkdir -pv "$BPM_OUTPUT"/usr/share/doc/iproute2 - cp -v COPYING README* "$BPM_OUTPUT"/usr/share/doc/iproute2 + + # Install package license + install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/iproute2/COPYING }