20 lines
460 B
Makefile
Executable file
20 lines
460 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
DPKG_EXPORT_BUILDFLAGS = 1
|
|
include /usr/share/dpkg/default.mk
|
|
include /usr/share/dpkg/architecture.mk
|
|
|
|
# package maintainers to append LDFLAGS
|
|
export DEB_LDFLAGS_MAINT_APPEND=-Wl,--as-needed
|
|
|
|
%:
|
|
dh $@ --parallel
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- \
|
|
-DOBS_MULTIARCH_SUFFIX=/$(DEB_HOST_MULTIARCH) \
|
|
-DUNIX_STRUCTURE=1
|
|
|
|
override_dh_install:
|
|
dh_install
|
|
rm -rf $(CURDIR)/debian/obs-studio/usr/share/obs/obs-studio/license
|