92 lines
3.3 KiB
Bash
92 lines
3.3 KiB
Bash
#!/usr/bin/bash
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobcore/$pkgname"
|
|
# Website : https://pozol.eu
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
## rebuild after any libbpf upgrade ##
|
|
pkgname=iproute2
|
|
pkgver=6.10.0
|
|
pkgrel=02
|
|
pkgdesc='IP Routing Utilities'
|
|
url='https://git.kernel.org/pub/scm/network/iproute2/iproute2.git'
|
|
depends=('glibc' 'libxtables.so' 'libcap' 'libelf' 'libbpf')
|
|
makedepends=('db5.3' 'linux-atm' 'iptables' 'bison' 'gettext')
|
|
optdepends=('db5.3: userspace arp daemon'
|
|
'linux-atm: ATM support'
|
|
'python: for routel')
|
|
provides=('iproute')
|
|
backup=('etc/iproute2/bpf_pinning'
|
|
'etc/iproute2/ematch_map'
|
|
'etc/iproute2/group'
|
|
'etc/iproute2/nl_protos'
|
|
'etc/iproute2/rt_dsfield'
|
|
'etc/iproute2/rt_protos'
|
|
'etc/iproute2/rt_realms'
|
|
'etc/iproute2/rt_scopes'
|
|
'etc/iproute2/rt_tables')
|
|
#options=('staticlibs' 'debug') ## uncomment this and comment the following to have the debug pkg produced
|
|
options=('staticlibs')
|
|
source=("https://www.kernel.org/pub/linux/utils/net/${pkgname}/${pkgname}-${pkgver}.tar."{xz,sign}
|
|
"sha256sums::https://mirrors.edge.kernel.org/pub/linux/utils/net/$pkgname/sha256sums.asc"
|
|
'0001-make-iproute2-fhs-compliant.patch'
|
|
'0002-bdb-5-3.patch')
|
|
|
|
prepare() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
# set correct fhs structure
|
|
patch -Np1 -i "${srcdir}"/0001-make-iproute2-fhs-compliant.patch
|
|
|
|
# use Berkeley DB 5.3
|
|
patch -Np1 -i "${srcdir}"/0002-bdb-5-3.patch
|
|
|
|
# do not treat warnings as errors
|
|
sed -i 's/-Werror//' Makefile
|
|
}
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
export CFLAGS+=' -ffat-lto-objects'
|
|
|
|
./configure
|
|
make DBM_INCLUDE='/usr/include/db5.3'
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" SBINDIR="/usr/bin" install
|
|
|
|
# # libnetlink isn't installed, install it FS#19385
|
|
# install -Dm0644 include/libnetlink.h "${pkgdir}/usr/include/libnetlink.h"
|
|
# install -Dm0644 lib/libnetlink.a "${pkgdir}/usr/lib/libnetlink.a"
|
|
}
|
|
|
|
#---- arch license gpg-key & sha256sums ----
|
|
|
|
arch=(x86_64)
|
|
|
|
license=('GPL2')
|
|
|
|
validpgpkeys=('9F6FC345B05BE7E766B83C8F80A77F6095CDE47E') # Stephen Hemminger
|
|
|
|
# https://mirrors.edge.kernel.org/pub/linux/utils/net/iproute2/sha256sums.asc
|
|
# 91a62f82737b44905a00fa803369c447d549e914e9a2a4018fdd75b1d54e8dce iproute2-6.10.0.tar.xz
|
|
|
|
sha256sums=(91a62f82737b44905a00fa803369c447d549e914e9a2a4018fdd75b1d54e8dce # iproute2-6.10.0.tar.xz
|
|
249ffa3c945228e738664876ce5401d95b6bb02714162b49a1bb0bfc940a1d4f # iproute2-6.10.0.tar.sign
|
|
a638601634ef859f36f283ab77ded6af3df26f3fd6396f954e7755645aa9b63b # sha256sums
|
|
758b82bd61ed7512d215efafd5fab5ae7a28fbfa6161b85e2ce7373285e56a5d # 0001-make-iproute2-fhs-compliant.patch
|
|
611c1ad7946aab226a5f4059922d9430f51b3377e33911427f8fdf7f7d31f7d6) # 0002-bdb-5-3.patch
|
|
|
|
sha256sums=('91a62f82737b44905a00fa803369c447d549e914e9a2a4018fdd75b1d54e8dce'
|
|
'SKIP'
|
|
'a638601634ef859f36f283ab77ded6af3df26f3fd6396f954e7755645aa9b63b'
|
|
'758b82bd61ed7512d215efafd5fab5ae7a28fbfa6161b85e2ce7373285e56a5d'
|
|
'611c1ad7946aab226a5f4059922d9430f51b3377e33911427f8fdf7f7d31f7d6')
|
|
|
|
## 6dd66f33444857c918d3f6b49428b0b55ff1b70b09ff9d392494e51f3121aae9 iproute2-6.10.0-02-x86_64.pkg.tar.lz
|
|
|