File: rules

package info (click to toggle)
jcal 0.5.1-0.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,560 kB
  • sloc: ansic: 2,124; javascript: 1,370; python: 815; makefile: 202; sh: 186
file content (32 lines) | stat: -rwxr-xr-x 958 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
#!/usr/bin/make -f
# -*- makefile -*-
# Sample debian/rules that uses debhelper.
# This file was originally written by Joey Hess and Craig Small.
# As a special exception, when this file is copied by dh-make into a
# dh-make output file, you may use that output file without restriction.
# This special exception was added by Craig Small in version 0.37 of dh-make.

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/buildflags.mk


# These are used for cross-compiling and for saving the configure script
# from having to guess our platform (since we know it already)

%:
	dh $@

override_dh_auto_configure:
	cd sources && ./autogen.sh && ./configure --prefix=/usr
	dh_auto_configure

override_dh_auto_build:
	cd sources && make
	dh_auto_build

override_dh_auto_install:
	cd sources && make DESTDIR=$(CURDIR)/debian/tmp install
	dh_auto_install