|
Revision 23786, 1.2 kB
(checked in by matrojette, 3 years ago)
|
minor changes
|
- Property svn:eol-style set to
native
- Property svn:executable set to
*
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
#!/usr/bin/make -f |
|---|
| 2 |
# -*- makefile -*- |
|---|
| 3 |
# Uncomment this to turn on verbose mode. |
|---|
| 4 |
#export DH_VERBOSE=1 |
|---|
| 5 |
|
|---|
| 6 |
configure-stamp: |
|---|
| 7 |
dh_testdir |
|---|
| 8 |
|
|---|
| 9 |
touch configure-stamp |
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
build: build-stamp |
|---|
| 13 |
|
|---|
| 14 |
build-stamp: configure-stamp |
|---|
| 15 |
dh_testdir |
|---|
| 16 |
|
|---|
| 17 |
touch build-stamp |
|---|
| 18 |
|
|---|
| 19 |
clean: |
|---|
| 20 |
dh_testdir |
|---|
| 21 |
dh_testroot |
|---|
| 22 |
rm -f build-stamp configure-stamp |
|---|
| 23 |
|
|---|
| 24 |
dh_clean |
|---|
| 25 |
|
|---|
| 26 |
install: build |
|---|
| 27 |
dh_testdir |
|---|
| 28 |
dh_testroot |
|---|
| 29 |
dh_clean -k |
|---|
| 30 |
dh_installdirs |
|---|
| 31 |
|
|---|
| 32 |
# Build architecture-dependent files here. |
|---|
| 33 |
binary-arch: build install |
|---|
| 34 |
# We have nothing to do by default. |
|---|
| 35 |
|
|---|
| 36 |
# Build architecture-independent files here. |
|---|
| 37 |
binary-indep: build install |
|---|
| 38 |
dh_testdir |
|---|
| 39 |
dh_testroot |
|---|
| 40 |
dh_installchangelogs |
|---|
| 41 |
dh_installdocs |
|---|
| 42 |
dh_installexamples |
|---|
| 43 |
dh_install |
|---|
| 44 |
#mv debian/ooo2dbk/usr/share/doc/ooo2dbk/doc/template.stw debian/ooo2dbk/usr/share/ooo2dbk |
|---|
| 45 |
chmod +x debian/ooo2dbk/usr/share/ooo2dbk/ooo2dbk debian/ooo2dbk/usr/share/ooo2dbk/ole2img.py |
|---|
| 46 |
echo "#!/bin/sh" > debian/ooo2dbk/usr/bin/ooo2dbk |
|---|
| 47 |
echo "/usr/share/ooo2dbk/ooo2dbk -c /etc/ooo2dbk.xml \"\$$@\"" >> debian/ooo2dbk/usr/bin/ooo2dbk |
|---|
| 48 |
dh_installman doc/ooo2dbk.1 |
|---|
| 49 |
dh_link |
|---|
| 50 |
dh_strip |
|---|
| 51 |
dh_compress |
|---|
| 52 |
dh_fixperms |
|---|
| 53 |
dh_python |
|---|
| 54 |
dh_installdeb |
|---|
| 55 |
dh_gencontrol |
|---|
| 56 |
dh_md5sums |
|---|
| 57 |
dh_builddeb |
|---|
| 58 |
|
|---|
| 59 |
binary: binary-indep binary-arch |
|---|
| 60 |
.PHONY: build clean binary-indep binary-arch binary install configure |
|---|