Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1 | #!/usr/bin/make -f |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2 | # Made with the aid of dh_make, by Craig Small |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3 | # Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess. |
| 4 | # Some lines taken from debmake, by Cristoph Lameter. |
| 5 | |
| 6 | # Uncomment this to turn on verbose mode. |
| 7 | #export DH_VERBOSE=1 |
| 8 | |
| 9 | # packages |
| 10 | NCURSES_PKG = ncurses-examples |
| 11 | NCURSEST_PKG = ncursest-examples |
| 12 | |
| 13 | PACKAGES.indep = # ncurses-examples-docs |
| 14 | PACKAGES.arch = $(NCURSES_PKG) $(NCURSEST_PKG) |
| 15 | |
| 16 | # These are used for cross-compiling and for saving the configure script |
| 17 | # from having to guess our platform (since we know it already) |
| 18 | DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) |
| 19 | DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) |
| 20 | |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 21 | CFLAGS = $(shell dpkg-buildflags --get CFLAGS) |
| 22 | CPPFLAGS = $(shell dpkg-buildflags --get CPPFLAGS) |
| 23 | LDFLAGS = $(shell dpkg-buildflags --get LDFLAGS) |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 24 | |
| 25 | ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) |
| 26 | CFLAGS += -O0 |
| 27 | else |
| 28 | CFLAGS += -O2 |
| 29 | endif |
| 30 | ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) |
| 31 | INSTALL_PROGRAM += -s |
| 32 | endif |
| 33 | |
| 34 | verbose = # -v |
| 35 | |
| 36 | configure = \ |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 37 | CFLAGS="$(CFLAGS)" \ |
| 38 | CPPFLAGS="$(CPPFLAGS)" \ |
| 39 | LDFLAGS="$(LDFLAGS)" ../../configure \ |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 40 | --host=$(DEB_HOST_GNU_TYPE) \ |
| 41 | --build=$(DEB_BUILD_GNU_TYPE) \ |
| 42 | --prefix=/usr \ |
| 43 | --disable-rpath-hack |
| 44 | |
| 45 | .PHONY: all config build install binary clean config-indep config-arch \ |
| 46 | build-indep build-arch install-indep install-arch binary-indep \ |
| 47 | binary-arch |
| 48 | |
| 49 | all: build |
| 50 | |
| 51 | config: config-indep config-arch |
| 52 | build: build-indep build-arch |
| 53 | install: install-indep install-arch |
| 54 | binary: binary-indep binary-arch |
| 55 | clean: |
| 56 | dh_testdir |
| 57 | dh_testroot |
| 58 | dh_clean $(verbose) |
| 59 | rm -rf t |
| 60 | |
| 61 | config-indep: $(PACKAGES.indep:%=config-%-stamp) |
| 62 | config-arch: $(PACKAGES.arch:%=config-%-stamp) |
| 63 | |
| 64 | build-indep: $(PACKAGES.indep:%=build-%-stamp) |
| 65 | build-arch: $(PACKAGES.arch:%=build-%-stamp) |
| 66 | |
| 67 | install-indep: $(PACKAGES.indep:%=install-%-stamp) |
| 68 | install-arch: $(PACKAGES.arch:%=install-%-stamp) |
| 69 | |
| 70 | config-$(NCURSES_PKG)-stamp: |
| 71 | dh_testdir |
| 72 | |
| 73 | rm -rf t/ncurses6 |
| 74 | mkdir -p t/ncurses6 |
| 75 | |
| 76 | cd t/ncurses6; $(configure) \ |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 77 | --datadir=\$${datarootdir}/$(NCURSES_PKG) \ |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 78 | --with-screen=ncursesw6 |
| 79 | |
| 80 | touch $@ |
| 81 | |
| 82 | config-$(NCURSEST_PKG)-stamp: |
| 83 | dh_testdir |
| 84 | |
| 85 | rm -rf t/ncursest6 |
| 86 | mkdir -p t/ncursest6 |
| 87 | |
| 88 | cd t/ncursest6; $(configure) \ |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 89 | --datadir=\$${datarootdir}/$(NCURSEST_PKG) \ |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 90 | --with-screen=ncursestw6 |
| 91 | |
| 92 | touch $@ |
| 93 | |
| 94 | build-$(NCURSES_PKG)-stamp: config-$(NCURSES_PKG)-stamp |
| 95 | dh_testdir |
| 96 | |
| 97 | $(MAKE) -C t/ncurses6 |
| 98 | |
| 99 | touch $@ |
| 100 | |
| 101 | build-$(NCURSEST_PKG)-stamp: config-$(NCURSEST_PKG)-stamp |
| 102 | dh_testdir |
| 103 | |
| 104 | $(MAKE) -C t/ncursest6 |
| 105 | |
| 106 | touch $@ |
| 107 | |
| 108 | install-$(NCURSES_PKG)-stamp: build-$(NCURSES_PKG)-stamp |
| 109 | dh_testdir |
| 110 | dh_testroot |
| 111 | dh_installdirs $(verbose) |
| 112 | dh_prep $(verbose) -p$(NCURSES_PKG) |
| 113 | |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 114 | $(MAKE) -C t/ncurses6 install \ |
| 115 | PACKAGE=$(NCURSES_PKG) \ |
| 116 | DESTDIR=$(CURDIR)/debian/$(NCURSES_PKG) |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 117 | |
| 118 | touch $@ |
| 119 | |
| 120 | install-$(NCURSEST_PKG)-stamp: build-$(NCURSEST_PKG)-stamp |
| 121 | dh_testdir |
| 122 | dh_testroot |
| 123 | dh_installdirs $(verbose) |
| 124 | dh_prep $(verbose) -p$(NCURSEST_PKG) |
| 125 | |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 126 | $(MAKE) -C t/ncursest6 install \ |
| 127 | PACKAGE=$(NCURSEST_PKG) \ |
| 128 | DESTDIR=$(CURDIR)/debian/$(NCURSEST_PKG) |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 129 | |
| 130 | touch $@ |
| 131 | |
| 132 | # Build architecture-independent files here. |
| 133 | binary-indep: install-indep |
| 134 | ifneq ($(PACKAGES.indep),) |
| 135 | rm -f $(PACKAGES.indep:%=install-%-stamp) |
| 136 | dh_testdir |
| 137 | dh_testroot |
| 138 | dh_installdocs $(verbose) $(PACKAGES.indep:%=-p%) |
| 139 | dh_installman $(verbose) $(PACKAGES.indep:%=-p%) |
| 140 | dh_installexamples $(verbose) $(PACKAGES.indep:%=-p%) |
| 141 | dh_installchangelogs $(verbose) $(PACKAGES.indep:%=-p%) NEWS |
| 142 | dh_compress $(verbose) $(PACKAGES.indep:%=-p%) |
| 143 | dh_fixperms $(verbose) $(PACKAGES.indep:%=-p%) |
| 144 | dh_installdeb $(verbose) $(PACKAGES.indep:%=-p%) |
| 145 | dh_gencontrol $(verbose) $(PACKAGES.indep:%=-p%) |
| 146 | dh_md5sums $(verbose) $(PACKAGES.indep:%=-p%) |
| 147 | dh_builddeb $(verbose) $(PACKAGES.indep:%=-p%) |
| 148 | endif |
| 149 | |
| 150 | # Build architecture-dependent files here. |
| 151 | binary-arch: install-arch |
| 152 | ifneq ($(PACKAGES.arch),) |
| 153 | rm -f $(PACKAGES.arch:%=install-%-stamp) |
| 154 | dh_testdir |
| 155 | dh_testroot |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 156 | dh_installdocs $(verbose) $(PACKAGES.arch:%=-p%) |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 157 | dh_installchangelogs $(verbose) $(PACKAGES.arch:%=-p%) NEWS |
| 158 | dh_strip $(verbose) $(PACKAGES.arch:%=-p%) |
| 159 | dh_compress $(verbose) $(PACKAGES.arch:%=-p%) |
| 160 | dh_fixperms $(verbose) $(PACKAGES.arch:%=-p%) |
| 161 | dh_installdeb $(verbose) $(PACKAGES.arch:%=-p%) |
| 162 | dh_makeshlibs $(verbose) $(PACKAGES.arch:%=-p%) |
| 163 | dh_shlibdeps $(verbose) $(PACKAGES.arch:%=-p%) |
| 164 | dh_gencontrol $(verbose) $(PACKAGES.arch:%=-p%) |
| 165 | dh_md5sums $(verbose) $(PACKAGES.arch:%=-p%) |
| 166 | dh_builddeb $(verbose) $(PACKAGES.arch:%=-p%) |
| 167 | endif |