mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-26 04:42:04 +00:00
60 lines
1.4 KiB
Makefile
Executable File
60 lines
1.4 KiB
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
.PHONY: override_dh_clean override_dh_auto_configure override_dh_auto_build override_dh_install override_dh_strip override_dh_installchangelogs override_dh_builddeb
|
|
|
|
LDFLAGS += -Wl,-z,defs -Wl,--as-needed
|
|
|
|
# uncomment line to turn verbose mode on
|
|
#export V=1
|
|
|
|
|
|
%:
|
|
dh $@ --parallel
|
|
|
|
override_dh_clean:
|
|
[ ! -f build-config ] || rake clean:dist
|
|
|
|
dh_clean config.status config.log \
|
|
rake.d/dependecy.d/*.rb src/input/*.d config.h build-config
|
|
|
|
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
|
|
rm -rf lib/gtest
|
|
endif
|
|
|
|
override_dh_auto_configure:
|
|
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
|
|
mkdir -p lib/gtest
|
|
cp -R /usr/include/gtest lib/gtest/
|
|
mv lib/gtest/gtest lib/gtest/include
|
|
cp -R /usr/src/gtest/src lib/gtest/
|
|
endif
|
|
|
|
dh_auto_configure -- --docdir='$${datarootdir}/doc/mkvtoolnix-gui' \
|
|
--enable-debug --enable-optimization
|
|
|
|
override_dh_auto_build:
|
|
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
|
|
LC_ALL=C rake tests:run_unit
|
|
endif
|
|
|
|
rake
|
|
|
|
override_dh_install:
|
|
rake install DESTDIR=$(CURDIR)/debian/tmp
|
|
|
|
dh_install -Xorg.bunkus.mkvtoolnix-gui.xml
|
|
dh_missing --fail-missing -Xorg.bunkus.mkvtoolnix-gui.xml
|
|
|
|
override_dh_strip:
|
|
dh_strip -pmkvtoolnix --dbg-package=mkvtoolnix-dbg
|
|
dh_strip -pmkvtoolnix-gui --dbg-package=mkvtoolnix-gui-dbg
|
|
|
|
override_dh_installchangelogs:
|
|
dh_installchangelogs NEWS.md
|
|
|
|
override_dh_builddeb:
|
|
case $(shell uname -m) in \
|
|
i*86) dh_builddeb -- -Zxz ;; \
|
|
*) dh_builddeb -- -Zxz -z9 ;; \
|
|
esac
|