forked from pnegre/python-whiteboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
23 lines (19 loc) · 624 Bytes
/
makefile
File metadata and controls
23 lines (19 loc) · 624 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
all: languages
languages:
lrelease trans/*.ts
clean:
rm -f trans/*.qm
rm -f stuff/*.pyc
install:
mkdir -p $(DESTDIR)/usr/share/python-whiteboard
mkdir -p $(DESTDIR)/usr/share/pixmaps
mkdir -p $(DESTDIR)/usr/share/applications
mkdir -p $(DESTDIR)/usr/bin
mkdir -p $(DESTDIR)/usr/share/qt4/translations/
cp python-whiteboard $(DESTDIR)/usr/bin
cp stuff/* $(DESTDIR)/usr/share/python-whiteboard
cp dist/pywb_pixmap.xpm $(DESTDIR)/usr/share/pixmaps
cp dist/python-whiteboard.desktop $(DESTDIR)/usr/share/applications
cp trans/*.qm $(DESTDIR)/usr/share/qt4/translations/
deb:
fakeroot dpkg-buildpackage -us -uc