From 75eedf36f7b2685f752ba4908478c4b0f7a872bd Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Thu, 23 Feb 2006 11:15:41 +0000 Subject: initial import of Mandriva One configuration files and draklive-install tool --- live/draklive-install/Makefile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 live/draklive-install/Makefile (limited to 'live/draklive-install/Makefile') diff --git a/live/draklive-install/Makefile b/live/draklive-install/Makefile new file mode 100644 index 000000000..6d5025822 --- /dev/null +++ b/live/draklive-install/Makefile @@ -0,0 +1,21 @@ +NAME = draklive-install +VERSION := $(shell rpm -q --qf '%{VERSION}\n' --specfile $(NAME).spec | head -1) +RELEASE := $(shell rpm -q --qf '%{RELEASE}\n' --specfile $(NAME).spec | head -1) + +rpm: dis + rpm -tb ../$(NAME)-$(VERSION).tar.bz2 + +check: + perl -cw $(NAME) + +clean: + find -name '*~' -exec rm {} \; + +dis ../$(NAME)-$(VERSION).tar.bz2: clean check + 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 + tar cf ../$(NAME)-$(VERSION).tar $(NAME)-$(VERSION) + bzip2 -9f ../$(NAME)-$(VERSION).tar + rm -rf $(NAME)-$(VERSION) -- cgit v1.2.1