mirror of
https://gitee.com/bianbu-linux/ai-support
synced 2025-04-20 04:07:40 -04:00
20 lines
538 B
Makefile
Executable file
20 lines
538 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
# You must remove unused comment lines for the released package.
|
|
#export DH_VERBOSE = 1
|
|
#export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
|
#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic
|
|
#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_configure:
|
|
if [ -f setup.py ]; then rm setup.py; fi
|
|
dh_auto_configure -- -DORT_HOME=/usr -DDEMO=ON -DXDG=ON
|
|
|
|
override_dh_auto_clean:
|
|
rm -rf setup.py
|
|
dh_auto_clean
|
|
|
|
override_dh_shlibdeps:
|
|
dh_shlibdeps --dpkg-shlibdeps-params=--ignore-missing-info
|