diff options
author | Christian Pointner <equinox@helsinki.at> | 2025-05-08 17:45:06 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2025-05-08 17:45:06 (GMT) |
commit | e540c2f827bd7c81915b00000e440d91b450b034 (patch) | |
tree | fd0525b5425220413f4a54434b1eeb1a2c7a2f56 /snd-pcxhr/debian/rules | |
parent | 829bf65b9d6813528cf83a99503955d8894b5bde (diff) |
Diffstat (limited to 'snd-pcxhr/debian/rules')
-rwxr-xr-x | snd-pcxhr/debian/rules | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/snd-pcxhr/debian/rules b/snd-pcxhr/debian/rules new file mode 100755 index 0000000..69bc5cc --- /dev/null +++ b/snd-pcxhr/debian/rules @@ -0,0 +1,18 @@ +#!/usr/bin/make -f + +include /usr/share/dpkg/pkg-info.mk + +%: + dh $@ --with dkms + +override_dh_auto_install: + install -d $$(pwd)/debian/tmp/usr/src/snd-pcxhr-$(DEB_VERSION_UPSTREAM)/ + install $$(pwd)/src/Makefile $$(pwd)/src/*.c $$(pwd)/src/*.h $$(pwd)/debian/tmp/usr/src/snd-pcxhr-$(DEB_VERSION_UPSTREAM)/ + install -d $$(pwd)/debian/tmp/lib/firmware/pcxhr/ + install $$(pwd)/src/firmware/* $$(pwd)/debian/tmp/lib/firmware/pcxhr/ + +override_dh_auto_configure: +override_dh_auto_build: +override_dh_auto_test: +override_dh_auto_install: +override_dh_auto_clean: |