1
0
Fork 0
mirror of https://github.com/kbumsik/VirtScreen.git synced 2025-02-15 04:41:50 +00:00
VirtScreen/package/debian/Makefile
2018-06-26 13:12:34 -04:00

28 lines
569 B
Makefile

prefix = /usr
all:
: # do nothing
SHELL = /bin/bash
install:
mkdir -p $(DESTDIR)$(prefix)/bin
install -m 755 VirtScreen-x86_64.AppImage \
$(DESTDIR)$(prefix)/bin/virtscreen
# Copy desktop entry and icon
install -m 644 -D virtscreen.desktop \
$(DESTDIR)$(prefix)/share/applications/virtscreen.desktop
install -m 644 -D data/virtscreen.png \
$(DESTDIR)$(prefix)/share/pixmaps/virtscreen.png
clean:
: # do nothing
distclean: clean
uninstall:
: # do nothing
# override_dh_usrlocal:
# : # do nothing
.PHONY: all install clean distclean uninstall