1
0
Fork 0
mirror of https://github.com/kbumsik/VirtScreen.git synced 2025-02-12 11:21:53 +00:00
VirtScreen/package/debian/Makefile
2018-11-07 06:17:26 +09:00

28 lines
562 B
Makefile

prefix = /usr
all:
: # do nothing
SHELL = /bin/bash
install:
mkdir -p $(DESTDIR)$(prefix)/bin
install -m 755 VirtScreen.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