summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorChmouel Boudjnah <chmouel@mandriva.org>1999-12-28 09:52:50 +0000
committerChmouel Boudjnah <chmouel@mandriva.org>1999-12-28 09:52:50 +0000
commit3be5b10b0310ba35d64a06aeb889e7a783b4aab1 (patch)
treee0c6add87922b77ed8107c03629110aa508fc1d4 /Makefile
parentda307b8c37f9fe40a48938b1b519e9fcb7a3952d (diff)
downloadrootfiles-3be5b10b0310ba35d64a06aeb889e7a783b4aab1.tar
rootfiles-3be5b10b0310ba35d64a06aeb889e7a783b4aab1.tar.gz
rootfiles-3be5b10b0310ba35d64a06aeb889e7a783b4aab1.tar.bz2
rootfiles-3be5b10b0310ba35d64a06aeb889e7a783b4aab1.tar.xz
rootfiles-3be5b10b0310ba35d64a06aeb889e7a783b4aab1.zip
Initial revisionoxygentopic/MandrakeSoft
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile29
1 files changed, 29 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..cc8c9ee
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,29 @@
+NAME = rootfiles
+VERSION = 7.0
+DOTFILES = Xdefaults bash_logout bash_profile bashrc cshrc emacs kderc tcshrc vimrc zshrc kde netscape
+FILES = Desktop
+
+all:
+ @echo "Use make install"
+
+install:
+ install -m700 -d $(RPM_BUILD_ROOT)/root
+ for i in $(DOTFILES) ; do cp -ar $$i $(RPM_BUILD_ROOT)/root/.$$i ; done
+ for i in $(FILES); do cp -ar $$i $(RPM_BUILD_ROOT)/root/ ; done
+ install -d -m700 $(RPM_BUILD_ROOT)/root/tmp
+
+dis:
+ 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