diff options
author | Chmouel Boudjnah <chmouel@mandriva.org> | 2000-02-17 18:05:08 +0000 |
---|---|---|
committer | Chmouel Boudjnah <chmouel@mandriva.org> | 2000-02-17 18:05:08 +0000 |
commit | c278da3908fc84567530937725b16c81a3a887c7 (patch) | |
tree | fca4f80b2974e86ede4def065c2d731fcd70c81c /Makefile | |
parent | ec103b683b1679b09e1d1a54b14a4ba178d67a37 (diff) | |
download | rpmtools-c278da3908fc84567530937725b16c81a3a887c7.tar rpmtools-c278da3908fc84567530937725b16c81a3a887c7.tar.gz rpmtools-c278da3908fc84567530937725b16c81a3a887c7.tar.bz2 rpmtools-c278da3908fc84567530937725b16c81a3a887c7.tar.xz rpmtools-c278da3908fc84567530937725b16c81a3a887c7.zip |
"See_The_Changelog"
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -1,3 +1,5 @@ +VERSION = 1.0 +NAME = rpmtools FROMC = rpm2header #rpm-find-leaves FROMCC = gendepslist hdlist2names hdlist2files ALL = $(FROMC) $(FROMCC) @@ -17,3 +19,19 @@ $(FROMC): %: %.c clean: rm -rf *~ $(ALL) + +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 -o -name unused |xargs rm -rf + perl -p -i -e 's|^%define version.*|%define version $(VERSION)|' $(NAME).spec + tar cf ../$(NAME)-$(VERSION).tar $(NAME)-$(VERSION) + bzip2 -9f ../$(NAME)-$(VERSION).tar + rm -rf $(NAME)-$(VERSION) + +rpm: dis ../$(NAME)-$(VERSION).tar.bz2 $(RPM) + cp -f ../$(NAME)-$(VERSION).tar.bz2 $(RPM)/SOURCES + cp -f $(NAME).spec $(RPM)/SPECS/ + -rpm -ba --clean --rmsource $(NAME).spec + rm -f ../$(NAME)-$(VERSION).tar.bz2
\ No newline at end of file |