File: rules

package info (click to toggle)
libjpeg6b 6b-13
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,748 kB
  • ctags: 2,634
  • sloc: ansic: 21,031; sh: 6,767; asm: 284; makefile: 79
file content (86 lines) | stat: -rwxr-xr-x 2,298 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#!/usr/bin/make -f
# Made with the aid of debmake, by Christoph Lameter,
# based on the sample debian/rules file for GNU hello by Ian Jackson.

package=libjpeg

export DEB_HOST_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
export DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)

include debian/patch.mk

export CFLAGS=-D_REENTRANT -g -Wall
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
CFLAGS += -O0
else
CFLAGS += -O2
endif


DH_COMPAT=1
#export DH_VERBOSE=1

build: build-stamp 
build-stamp: patch-stamp
	dh_testdir
	./configure --prefix=/usr --mandir=usr/share/man \
	 --enable-static --enable-shared --enable-maxmem=1024 \
	 --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE) 
	printf '#!/bin/sh\nexec libtool "$$@"\n' >libtool
	$(MAKE)
	$(MAKE) test
	$(MAKE) -C debian/extra

	touch build-stamp

clean: patch
	dh_testdir
	dh_testroot
	-rm -f build-stamp
	-$(MAKE) clean
	-$(MAKE) clean -C debian/extra
	-rm -f libtool libtool.cfg Makefile jconfig.h config.log
	dh_clean

binary-indep: 

binary-arch: build
	dh_testdir 
	dh_testroot 
	dh_clean -k
	dh_installdirs 
	mkdir --parents debian/tmp/usr/bin \
	                debian/tmp/usr/lib \
			debian/tmp/usr/include \
			debian/tmp/usr/share/man/man1
	$(MAKE) install \
		prefix=`pwd`/debian/tmp/usr \
		mandir=`pwd`/debian/tmp/usr/share/man/man1
	$(MAKE) install -C debian/extra prefix=`pwd`/debian/tmp/usr
#<ballombe@debian.org>:mjpegtools require this file to build and header say:
# * These declarations are considered internal to the JPEG library; most
# * applications using the library shouldn't need to include this file.
# So it is not forbidden to use it, therefore it must be installed.
	install -m644 jpegint.h debian/tmp/usr/include
	# fix jconfig.h 
	rm debian/tmp/usr/include/jconfig.h
	sed -e "s/#\(undef\|define\) HAVE_STD\(DEF\|LIB\)_H//g" \
		jconfig.h > debian/tmp/usr/include/jconfig.h
	# separate out lib package
	dh_movefiles
	# Finish it off with debhelper
	dh_installdocs README
	dh_installexamples 
	dh_installchangelogs change.log
	dh_strip 
	dh_compress 
	dh_fixperms 
	dh_installdeb 
	dh_shlibdeps -l`pwd`/debian/libjpeg6b/usr/lib 
	dh_gencontrol 
	dh_md5sums 
	dh_builddeb 

binary:	binary-indep binary-arch

.PHONY: clean binary-indep binary-arch binary build patch