148
by Francois Marier
Basic working Debian packaging, ready to be deployed |
1 |
#!/usr/bin/make -f
|
2 |
# -*- makefile -*-
|
|
3 |
||
4 |
# Uncomment this to turn on verbose mode.
|
|
5 |
#export DH_VERBOSE=1
|
|
6 |
||
7 |
%: |
|
8 |
dh $@ |
|
269
by Francois Marier
Add gearman support for cropping/resizing photos |
9 |
|
10 |
override_dh_installinit: |
|
275
by Francois Marier
Add a gearman worker script to delete photos |
11 |
dh_installinit --name=deletephoto |
272
by Francois Marier
Fix initscripts to make them actually start and stop properly |
12 |
dh_installinit --name=ready2user |
13 |
dh_installinit --name=cropresize |
|
362
by Francois Marier
Move photo associations to a gearman worker |
14 |
dh_installinit --name=changephoto |
374
by Francois Marier
Move the dynamic avatar resizing to a blocking gearman job |
15 |
dh_installinit --name=resizeavatar |
392.1.1
by Francois Marier
Initial dummy export of user accounts |
16 |
dh_installinit --name=exportaccount |
443
by Francois Marier
Create a new libravatar-master package |
17 |
dh_installinit
|
485
by Francois Marier
debian: don't install PO files, just the compiled ones (.mo) |
18 |
|
19 |
override_dh_install: |
|
20 |
dh_install
|
|
21 |
find $(CURDIR)/debian/libravatar-www/usr/share/libravatar/libravatar/locale -type l -name "*.po" -delete |
|
670
by Francois Marier
Switch from dh_pysupport to dh_python2 (closes: #893404) |
22 |
|
23 |
override_dh_pysupport: |
|
672
by Francois Marier
Fix dh_python2 line in debian/rules |
24 |
dh_python2 -p libravatar-www |