You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
353 B
12 lines
353 B
#!/usr/bin/make -f
|
|
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
|
|
export DEB_HOST_MULTIARCH
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_configure: debian/librtlsdr0.udev
|
|
dh_auto_configure -- -DLIB_INSTALL_DIR=lib/$(DEB_HOST_MULTIARCH) -DDETACH_KERNEL_DRIVER=ON
|
|
|
|
debian/librtlsdr0.udev: rtl-sdr.rules
|
|
cp -p rtl-sdr.rules debian/librtlsdr0.udev
|
|
|