source: trunk/Makefile@ 182

Last change on this file since 182 was 182, checked in by kdeugau, 9 years ago

/trunk

Major update worth a bump in the major version.

Rewrite handling for the %setup macro/tag after a bit of prodding from
Neal Gompa from the Enano CMS Project. The main addition is support
for the -a and -b flags, along with their related baggage.

  • Property svn:keywords set to Id
File size: 886 bytes
RevLine 
[141]1# quick makefile for debbuild
2# $Id: Makefile 182 2015-05-28 01:49:52Z kdeugau $
3
4MANIFEST = \
5 debbuild Makefile COPYING debbuild.spec
6
7PKGNAME=debbuild
[182]8VERSION=0.10.0
[141]9
10MANDIR=/usr/share/man
11CONFDIR=/etc
12
13all:
14 # nothing to do
15
16install:
17 mkdir -p $(DESTDIR)/usr/bin
18 cp debbuild $(DESTDIR)/usr/bin
19
20 mkdir -p $(DESTDIR)$(MANDIR)/man8
21 pod2man --center="DeepNet Dev Tools" --section 8 \
[142]22 debbuild | gzip > $(DESTDIR)$(MANDIR)/man8/debbuild.8.gz
[141]23
24dist:
25 mkdir $(PKGNAME)-$(VERSION)
26 tar cf - $(MANIFEST) | (cd $(PKGNAME)-$(VERSION); tar xvf -)
27 /usr/bin/perl -p -e 's/#VERSION#/$(VERSION)/' < $(PKGNAME).spec > $(PKGNAME)-$(VERSION)/$(PKGNAME).spec
[164]28 /usr/bin/perl -p -e 's/[\d.]+"; #VERSION#/$(VERSION)";/' < debbuild > $(PKGNAME)-$(VERSION)/debbuild
[141]29 tar cvf $(PKGNAME)-$(VERSION).tar $(PKGNAME)-$(VERSION)
30 gzip -v -f -9 $(PKGNAME)-$(VERSION).tar
31 rm -rf $(PKGNAME)-$(VERSION)
[165]32 gpg -a --detach-sign $(PKGNAME)-$(VERSION).tar.gz
Note: See TracBrowser for help on using the repository browser.