[arch-commits] Commit in r8168-lts/repos (2 files)
Andreas Radke
andyrtr at archlinux.org
Thu Apr 2 15:24:10 UTC 2020
Date: Thursday, April 2, 2020 @ 15:24:09
Author: andyrtr
Revision: 609610
archrelease: copy trunk to community-testing-x86_64
Added:
r8168-lts/repos/community-testing-x86_64/
r8168-lts/repos/community-testing-x86_64/PKGBUILD
(from rev 609609, r8168-lts/trunk/PKGBUILD)
----------+
PKGBUILD | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
Copied: r8168-lts/repos/community-testing-x86_64/PKGBUILD (from rev 609609, r8168-lts/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2020-04-02 15:24:09 UTC (rev 609610)
@@ -0,0 +1,35 @@
+# Maintainer: Massimiliano Torromeo <massimiliano.torromeo at gmail.com>
+
+pkgname=r8168-lts
+pkgver=8.048.00
+pkgrel=22
+pkgdesc="A kernel module for Realtek 8168 network cards for linux-lts"
+url="http://www.realtek.com.tw"
+license=("GPL")
+arch=('x86_64')
+makedepends=('linux-lts-headers')
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/r8168-$pkgver.tar.gz)
+sha256sums=('0aacba20d985ba5e67e21bdad89a099e102f7bef3027adb647ffbb80b01ac8d0')
+
+build() {
+ cd "r8168-$pkgver"
+ # avoid using the Makefile directly -- it doesn't understand
+ # any kernel but the current.
+ make -C /usr/src/linux-lts M="$PWD/src" \
+ EXTRA_CFLAGS="-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN" \
+ modules
+}
+
+package() {
+ depends=('glibc' 'linux-lts')
+
+ local extradir=/usr/lib/modules/$(</usr/src/linux-lts/version)/extramodules
+ cd "r8168-$pkgver"
+ install -Dt "$pkgdir$extradir" -m644 src/*.ko
+ find "$pkgdir" -name '*.ko' -exec xz {} +
+
+ echo "blacklist r8169" | \
+ install -Dm644 /dev/stdin "$pkgdir/usr/lib/modprobe.d/$pkgname.conf"
+}
+
+# vim:set sw=0 noet:
More information about the arch-commits
mailing list