3 # Sample debian/rules that uses debhelper.
4 # This file was originally written by Joey Hess and Craig Small.
5 # As a special exception, when this file is copied by dh-make into a
6 # dh-make output file, you may use that output file without restriction.
7 # This special exception was added by Craig Small in version 0.37 of dh-make.
9 # Uncomment this to turn on verbose mode.
13 # These are used for cross-compiling and for saving the configure script
14 # from having to guess our platform (since we know it already)
15 DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
16 DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
17 PACKAGE_VERSION ?= $(shell sed -n "1 p" debian/changelog | sed 's/.*(\(.*\)).*/\1/')
18 PACKAGE_API_VERSION ?= $(shell sed -n "1 p" debian/changelog | sed "s/.*([0-9]*.\([0-9]*\).*).*/\1/" )
22 LDFLAGS = -Wl,--rpath=$(PREFIX)/lib
23 # Please set CFLAGS only in CMakeLists.txt, as they are dependent on CMake build type.
26 ifeq (,$(findstring no,$(DPL_LOG)))
27 DPL_LOGS_STATUS = "ON"
29 DPL_LOGS_STATUS = "OFF"
32 ifeq (1,$(WRT_SKIP_ACE_SUPPORT))
38 ifeq (1,$(WRT_SMACK_ENABLE))
45 #efl library, use TARGET=X1
48 CMAKE_BUILD_DIR ?= $(CURDIR)/cmake_build_tmp
50 #config.status: configure
53 # Add here commands to configure the package.
54 mkdir -p $(CMAKE_BUILD_DIR) && cd $(CMAKE_BUILD_DIR) && \
55 cmake ${SRCDIR} -DBUILD_TYPE="${TARGET}" -DCMAKE_INSTALL_PREFIX="${PREFIX}" -DCMAKE_BUILD_TYPE="$(BUILD_TYPE)" -DDPL_LOG=$(DPL_LOGS_STATUS) -DSMACK_ENABLED=${SMACK_STATUS} -DCMAKE_PACKAGE_API_VERSION="$(PACKAGE_API_VERSION)" -DWRT_SKIP_ACE_SUPPORT="${WRT_SKIP_ACE}" -DUG_INSTALL_PREFIX="${DATADIR}" -DCMAKE_PACKAGE_VERSION="${PACKAGE_VERSION}" ..
59 build-stamp: config.status
61 # Add here commands to compile the package.
62 cd $(CMAKE_BUILD_DIR) && $(MAKE) -j 4
63 #docbook-to-man debian/ncurses.sgml > ncurses.1
65 for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
66 cat $$f > $${f%.in}; \
67 sed -i -e "s#@PREFIX@#$(PREFIX)#g" $${f%.in}; \
68 sed -i -e "s#@DATADIR@#$(DATADIR)#g" $${f%.in}; \
71 for f in `find $(CURDIR)/pkgconfigs/ -name "*.in"`; do \
72 cat $$f > $${f%.in}; \
73 sed -i -e "s#@VERSION@#$(PACKAGE_VERSION)#g" $${f%.in}; \
83 # Add here commands to clean up after the build process.
84 -find . -name CMakeFiles -exec rm -rf {} \;
85 -find . -name cmake_install.cmake -exec rm {} \;
86 #-find . -name Makefile -exec rm {} \;
89 rm -rf $(CMAKE_BUILD_DIR)
99 rm -rf build/install-sh
100 rm -rf build/ltmain.sh
103 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
104 cp -f /usr/share/misc/config.sub config.sub
106 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
107 cp -f /usr/share/misc/config.guess config.guess
110 for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
123 # Add here commands to install the package into debian/ncurses.
124 cd $(CMAKE_BUILD_DIR) && $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
127 # Build architecture-independent files here.
128 binary-indep: build install
129 # We have nothing to do by default.
131 # Build architecture-dependent files here.
132 binary-arch: build install
138 dh_install --sourcedir=debian/tmp
141 # dh_installlogrotate
151 dh_strip --dbg-package=wrt-dbg
162 binary: binary-indep binary-arch
163 .PHONY: build clean binary-indep binary-arch binary install