1
0
mirror of https://git.dpkg.org/git/dpkg/dpkg-www.git synced 2025-04-03 01:35:28 +00:00
Files
dpkg-www/Makefile
Guillem Jover ef93e1188b build: Remove directories from man page name
We were only removing the extension, but leaving the directory.
2022-12-03 17:01:04 +01:00

37 lines
809 B
Makefile

# Makefile
PKGNAME = $(shell dpkg-parsechangelog -SSource)
VERSION = $(shell dpkg-parsechangelog -SVersion)
RELTIME = $(shell dpkg-parsechangelog -STimestamp)
PODDATE = $(shell TZ=UTC0 LC_ALL=C date '+%F' --date="@$(RELTIME)")
POD2MAN = pod2man
MANS = src/dpkg-www.1 src/dpkg-www.8
all: src/dpkg $(MANS)
src/dpkg: src/dpkg-cgi
# Update program version from changelog
sed '/^PROG_VERSION=/s/^.*$$/PROG_VERSION=$(VERSION)/' <$< >$@
chmod 755 $@
%: %.pod
$(POD2MAN) \
--section=$(subst .,,$(suffix $@)) \
--name=$(notdir $(basename $@)) \
--center="Debian Project" \
--date="$(PODDATE)" \
--release="$(VERSION)" \
$< >$@
clean:
$(RM) src/dpkg
$(RM) $(MANS)
dist:
git archive \
--prefix=$(PKGNAME)-$(VERSION)/ \
--output=$(PKGNAME)-$(VERSION).tar.xz \
$(VERSION)