26 lines
686 B
Plaintext
26 lines
686 B
Plaintext
pkgname=iproute2
|
|
pkgver=6.13.0
|
|
pkgdesc='IP Routing Utilities'
|
|
arch=('x86_64')
|
|
license=('GPL-2.0-or-later')
|
|
homepage='https://www.kernel.org/pub/linux/utils/net/iproute2/'
|
|
sources=("${pkgname}-${pkgver}.tar.xz")
|
|
urls=("https://www.kernel.org/pub/linux/utils/net/${pkgname}/${sources[0]}")
|
|
md5sums=("1603d25120d03feeaba9b360d03ffaec")
|
|
|
|
src_prepare() {
|
|
tar -xf ${distdir}/${sources[0]} --strip-components=1
|
|
}
|
|
|
|
src_build() {
|
|
sed -i /ARPD/d Makefile
|
|
rm -fv man/man8/arpd.8
|
|
./configure --color auto
|
|
make NETNS_RUN_DIR=/run/netns
|
|
}
|
|
|
|
src_install() {
|
|
make DESTDIR="${pkgdir}" SBINDIR=/usr/bin/ install
|
|
install -vDm644 COPYING README* -t "${pkgdir}"/usr/share/doc/iproute2-6.13.0
|
|
}
|