mirror of
https://github.com/rbreaves/kinto.git
synced 2025-08-14 14:49:14 +02:00
23 lines
610 B
Makefile
23 lines
610 B
Makefile
#Just for building packages. (eopkg for solus)
|
|
|
|
DESTDIR ?=
|
|
|
|
INSTALLPATH ?= /usr/lib64/budgie-desktop/plugins
|
|
|
|
ICONPATH ?= /usr/share/icons/hicolor/scalable/apps
|
|
|
|
budgie-restart-applet:
|
|
echo "Nothing to do"
|
|
install: budgie-restart-applet
|
|
mkdir -p $(DESTDIR)$(INSTALLPATH)/org.budgie-desktop.applet.budgierestart
|
|
mkdir -p $(DESTDIR)$(ICONPATH)
|
|
#rm -f $(ICONDIR)/icon-theme.cache
|
|
for file in BudgieRestart/*; \
|
|
do \
|
|
install -m 0755 "$$file" $(DESTDIR)$(INSTALLPATH)/org.budgie-desktop.applet.budgierestart/; \
|
|
done
|
|
for file in icons/*; \
|
|
do \
|
|
install -m 0755 "$$file" $(DESTDIR)$(ICONPATH)/; \
|
|
done
|