mirror of
https://git.proxmox.com/git/package-rebuilds
synced 2025-08-22 09:04:40 +00:00

Which includes the backported fix from our 693166c
("r8125: backport
fix for 6.8 and bump package version to 9.011.00-4.1") already, so no
need to port that over.
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
19 lines
472 B
Makefile
Executable File
19 lines
472 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
#export DH_VERBOSE=1
|
|
|
|
include /usr/share/dpkg/pkg-info.mk
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_install:
|
|
dh_install src/*.h src/*.c src/Makefile usr/src/r8125-$(DEB_VERSION_UPSTREAM)/
|
|
find debian/r8125-dkms/usr/src -type f -perm -5 -print0 2>/dev/null | xargs -0r chmod a-X
|
|
|
|
override_dh_dkms:
|
|
dh_dkms -V $(DEB_VERSION_UPSTREAM)
|
|
|
|
# do nothing
|
|
override_dh_auto_configure override_dh_auto_build override_dh_auto_test override_dh_auto_install override_dh_auto_clean:
|