diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b1d61fe --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +INSTALL = install +INSTALL_PROGRAM = $(INSTALL) +INSTALL_DIR = $(INSTALL) -d +INSTALL_DATA = $(INSTALL) -m 644 + +all: + +install: + $(INSTALL_DIR) $(DESTDIR)/etc/ngcp-vmnotify + $(INSTALL_DATA) mwi.sip $(DESTDIR)/etc/ngcp-vmnotify/ + $(INSTALL_DATA) vmnotify.conf $(DESTDIR)/etc/ngcp-vmnotify/ + $(INSTALL_DIR) $(DESTDIR)/usr/bin + $(INSTALL_PROGRAM) vmnotify $(DESTDIR)/usr/bin/ngcp-vmnotify + $(INSTALL_PROGRAM) vmsmsnotify $(DESTDIR)/usr/bin/ngcp-vmsmsnotify diff --git a/debian/install b/debian/install deleted file mode 100644 index a3cb203..0000000 --- a/debian/install +++ /dev/null @@ -1,4 +0,0 @@ -mwi.sip etc/ngcp-vmnotify/ -vmnotify usr/bin/ -vmnotify.conf etc/ngcp-vmnotify/ -vmsmsnotify usr/bin/ diff --git a/debian/ngcp-vmnotify.links b/debian/ngcp-vmnotify.links new file mode 100644 index 0000000..9d062ef --- /dev/null +++ b/debian/ngcp-vmnotify.links @@ -0,0 +1,2 @@ +usr/bin/ngcp-vmnotify usr/bin/vmnotify +usr/bin/ngcp-vmsmsnotify usr/bin/vmsmsnotify