31 lines
711 B
Makefile
Executable File
31 lines
711 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
#export DH_VERBOSE=1
|
|
|
|
#just use base version
|
|
VERSION := $(shell dpkg-parsechangelog -S Version | sed 's/-.*//' | sed 's/+pristine//')
|
|
|
|
%:
|
|
dh $@ --parallel --with dkms
|
|
|
|
override_dh_install:
|
|
dh_install dkms.conf REALTEK_README.txt Makefile usr/src/realtek-r8168-$(VERSION)
|
|
dh_install src/* usr/src/realtek-r8168-$(VERSION)/src
|
|
|
|
override_dh_dkms:
|
|
dh_dkms -V $(VERSION)
|
|
|
|
override_dh_fixperms:
|
|
dh_fixperms
|
|
find debian/realtek-r8125-dkms/usr/src -type f -exec chmod -x {} \;
|
|
|
|
override_dh_builddeb:
|
|
dh_builddeb -- -Zxz
|
|
|
|
# Nothing to configure, build or auto-install
|
|
override_dh_auto_configure:
|
|
override_dh_auto_build:
|
|
override_dh_auto_test:
|
|
override_dh_auto_install:
|
|
override_dh_auto_clean:
|