File: rules

package info (click to toggle)
winetricks 20230212-2
  • links: PTS, VCS
  • area: contrib
  • in suites: bookworm
  • size: 6,112 kB
  • sloc: sh: 18,603; makefile: 118; python: 64; xml: 19
file content (22 lines) | stat: -rwxr-xr-x 485 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/make -f

# Required for DEB_VERSION_UPSTREAM
include  /usr/share/dpkg/pkg-info.mk

CHANGELOG := debian/upstream/changelog

# Run manually when package is updated (upstream git tag must be available)
# and new upstream version is in d/changelog
get-changelog:
	git log --pretty=short $(DEB_VERSION_UPSTREAM) > $(CHANGELOG)

override_dh_auto_test:
	# Skip. These are internal tests.

override_dh_installchangelogs:
	dh_installchangelogs $(CHANGELOG)

%:
	dh $@

# End of file