]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - package/debian-mingw64/rules
ncurses 6.0 - patch 20180106
[ncurses.git] / package / debian-mingw64 / rules
old mode 100644 (file)
new mode 100755 (executable)
index 1177e11..5ef06f7
@@ -11,6 +11,8 @@
 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
 
+MY_ABI=6
+
 BUILD_CC = gcc
 
 CC_NORMAL = -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wconversion
@@ -19,10 +21,12 @@ CC_STRICT = $(CC_NORMAL) -W -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissi
 TARGET    = x86_64-w64-mingw32
 MINGW_BIN = /usr/bin
 MINGW_TOP = /usr/$(TARGET)
-MINGW_TMP = $(CURDIR)/debian/mingw64-ncurses6
+MINGW_TMP = $(CURDIR)/debian/mingw64-ncurses$(MY_ABI)
 
 CFLAGS = $(CC_NORMAL)
 
+verbose = # -v
+
 CONFIG_OPTIONS = \
        --disable-echo \
        --disable-db-install \
@@ -32,24 +36,17 @@ CONFIG_OPTIONS = \
        --disable-macros \
        --disable-overwrite \
        --disable-termcap \
-       --enable-const \
-       --enable-ext-colors \
-       --enable-ext-mouse \
-       --enable-ext-putwin \
        --enable-interop \
        --enable-pc-files \
-       --enable-sp-funcs \
        --enable-term-driver \
        --enable-warnings \
        --enable-widec \
        --verbose \
-       --with-chtype=uint32_t \
-       --with-mmask_t=uint32_t \
+       --with-abi-version=$(MY_ABI) \
        --with-cxx-shared \
        --with-develop \
        --with-fallbacks=unknown,rxvt \
        --with-shared \
-       --with-tparm-arg=intptr_t \
        --with-trace \
        --with-xterm-kbs=DEL \
        --without-ada \
@@ -80,6 +77,7 @@ configure-stamp:
                --target=$(TARGET) \
                --prefix=$(MINGW_TOP) \
                --with-build-cc=$(BUILD_CC) \
+               --with-pc-suffix=$(MY_ABI) \
                --with-pkg-config-libdir=/usr/$(TARGET)/lib/pkgconfig \
                $(CONFIG_OPTIONS)
 
@@ -108,7 +106,7 @@ install-stamp: build-stamp
        dh_testdir
        dh_testroot
        dh_clean -k
-       dh_installdirs
+       dh_installdirs      $(verbose)
 
        $(MAKE) install.libs DESTDIR=$(MINGW_TMP)
 
@@ -128,16 +126,18 @@ binary-indep: build install
 # Build architecture-dependent files here.
 binary-arch: build install
        dh_testdir
-       dh_testroot
-       dh_installchangelogs NEWS
+       dh_testroot          $(verbose)
+       dh_lintian           $(verbose)
+       dh_installdocs       $(verbose)
+       dh_installchangelogs $(verbose) NEWS
        # dh_strip
-       dh_compress
-       dh_fixperms
-       dh_installdeb
-       dh_shlibdeps
-       dh_gencontrol
-       dh_md5sums
-       dh_builddeb
+       dh_compress          $(verbose)
+       dh_fixperms          $(verbose)
+       dh_installdeb        $(verbose)
+       dh_shlibdeps         $(verbose)
+       dh_gencontrol        $(verbose)
+       dh_md5sums           $(verbose)
+       dh_builddeb          $(verbose)
 
 binary: binary-indep binary-arch
 .PHONY: build clean binary-indep binary-arch binary install install-stamp