aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorFrederic Lepied <flepied@mandriva.com>2004-08-31 07:35:52 +0000
committerFrederic Lepied <flepied@mandriva.com>2004-08-31 07:35:52 +0000
commit1e10f223bc1255660f4d4395d1cac148cb166793 (patch)
treea5e2e12413bdeb3896de00924921e349a79d82ab /Makefile
parent8e5c14c6221b4d7652d0d6ec50dbdf0072aeb5b9 (diff)
downloadcommon-data-1e10f223bc1255660f4d4395d1cac148cb166793.tar
common-data-1e10f223bc1255660f4d4395d1cac148cb166793.tar.gz
common-data-1e10f223bc1255660f4d4395d1cac148cb166793.tar.bz2
common-data-1e10f223bc1255660f4d4395d1cac148cb166793.tar.xz
common-data-1e10f223bc1255660f4d4395d1cac148cb166793.zip
added standard rules to build packages
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile59
1 files changed, 44 insertions, 15 deletions
diff --git a/Makefile b/Makefile
index fe4ad3a..c19130c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,21 +1,50 @@
PACKAGE = mandrake_desk
NAME = mandrake_desk
-VERSION:=$(shell grep 'Version:' $(PACKAGE).spec| cut -f 2)
-RELEASE:=$(shell grep 'Release:' $(PACKAGE).spec| cut -f 2)
+VERSION:=$(shell rpm -q --qf '%{VERSION}\n' --specfile $(PACKAGE).spec | head -1)
+RELEASE:=$(shell rpm -q --qf '%{RELEASE}\n' --specfile $(PACKAGE).spec | head -1)
TAG := $(shell echo "V$(VERSION)_$(RELEASE)" | tr -- '-.' '__')
mandir=/usr/share/man
clean:
- find . -type d -name '.xvpics'|xargs rm -rf
-
-dis: clean
- rm -rf $(NAME)-$(VERSION) ../$(NAME)-$(VERSION).tar*
- mkdir -p $(NAME)-$(VERSION)
- find . -not -name "$(NAME)-$(VERSION)"|cpio -pd $(NAME)-$(VERSION)/
- find $(NAME)-$(VERSION) -type d -name CVS -o -name .cvsignore |xargs rm -rf
- tar jcf ../$(NAME)-$(VERSION).tar.bz2 $(NAME)-$(VERSION)
- rm -rf $(NAME)-$(VERSION)
-
-rpm: dis
- rpm -ta --clean --rmsource ../$(NAME)-$(VERSION).tar.bz2
- rm -f ../$(NAME)-$(VERSION).tar.bz2
+ find . -type d -name '.xvpics' -o -name '*~' |xargs rm -rf
+
+# rules to build a test rpm
+
+localrpm: localdist buildrpm
+
+localdist: cleandist dir localcopy tar
+
+cleandist:
+ rm -rf $(PACKAGE)-$(VERSION) $(PACKAGE)-$(VERSION).tar.bz2
+
+dir:
+ mkdir $(PACKAGE)-$(VERSION)
+
+localcopy:
+ find . -not -name "$(PACKAGE)-$(VERSION)"|cpio -pd $(PACKAGE)-$(VERSION)/
+ find $(PACKAGE)-$(VERSION) -type d -name CVS -o -name .cvsignore |xargs rm -rf
+
+tar:
+ tar cvf $(PACKAGE)-$(VERSION).tar $(PACKAGE)-$(VERSION)
+ bzip2 -9vf $(PACKAGE)-$(VERSION).tar
+ rm -rf $(PACKAGE)-$(VERSION)
+
+buildrpm:
+ rpm -ta $(PACKAGE)-$(VERSION).tar.bz2
+
+# rules to build a distributable rpm
+
+rpm: changelog cvstag dist buildrpm
+
+dist: cleandist dir export tar
+
+export:
+ cvs export -d $(PACKAGE)-$(VERSION) -r $(TAG) $(PACKAGE)
+
+cvstag:
+ cvs tag $(CVSTAGOPT) $(TAG)
+
+changelog: ../common/username
+ cvs2cl -U ../common/username -I ChangeLog
+ rm -f ChangeLog.bak
+ cvs commit -m "Generated by cvs2cl the `date '+%d_%b'`" ChangeLog