blob: a99bf079cbcb7da274a7ec0c4e5f089dc96195f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/usr/bin/make -f
LDFLAGS+=-Wl,--as-needed
%:
dh $@ --with autoreconf --fail-missing
override_dh_autoreconf:
NOCONFIGURE=1 dh_autoreconf ./autogen.sh
override_dh_auto_build:
dh_auto_build
./src/logo-generator --logo data/logo-bare.png --text '14.04 LTS' --output logo.png
override_dh_auto_install:
dh_auto_install
cp logo.png debian/unity-greeter-x2go/usr/share/unity-greeter/logo.png
override_dh_auto_clean:
dh_auto_clean
rm -f logo.png
|