mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-09 01:56:05 -05:00
14 lines
430 B
Plaintext
14 lines
430 B
Plaintext
|
#!/usr/bin/make -f
|
||
|
%:
|
||
|
dh $@ --parallel
|
||
|
|
||
|
# FORCE_SSE41 will be not accepted upstream
|
||
|
override_dh_auto_configure:
|
||
|
dh_auto_configure -- -DFORCE_SSE41=ON
|
||
|
|
||
|
# permit the packaging with /usr/local/lib libraries (from `make install`)
|
||
|
# you can also use `export DEB_DH_SHLIBDEPS_ARGS_ALL=--dpkg-shlibdeps-params=--ignore-missing-info`
|
||
|
# not a good idea!
|
||
|
override_dh_shlibdeps:
|
||
|
dh_shlibdeps --dpkg-shlibdeps-params=--ignore-missing-info
|