Aligned the package layout with the concurrent Debian packaging conventions. Moved package files under 'debian/all/' to avoid duplication across OS builds and removed legacy paths under 'debian/'. Updated related build references to ensure compatibility across all supported OS codenames. Test Plan: PASS master bullseye build Story: 2011360 Task: 53332 Change-Id: Iecb4134bc748530d3809447a8184ec9e4e1109d8 Signed-off-by: Abhinav Ayyapasetti <ayyapasetti.abhinav@windriver.com>
16 lines
319 B
Makefile
Executable File
16 lines
319 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
#export DH_VERBOSE = 1
|
|
|
|
DEBIAN_DESTDIR := $(CURDIR)/debian/tmp
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_install:
|
|
dh_auto_install -- prefix=/usr mandir=/usr/share/man
|
|
|
|
override_dh_install:
|
|
install -d -m 755 ${DEBIAN_DESTDIR}/usr/sbin
|
|
install -p -D -m 755 synce4l ${DEBIAN_DESTDIR}/usr/sbin/synce4l
|
|
dh_install
|