1ab2e46e43
Package the synce4l utility and include it in the system for the PTP notification application. Test Plan: PASS: build package and iso successfully PASS: execute synce4l successfully Story: 2010540 Task: 47261 Signed-off-by: Teresa Ho <teresa.ho@windriver.com> Change-Id: I459055b99fb01f622bdde36ce3fba766a971bca5
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
|