diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 15 |
1 files changed, 4 insertions, 11 deletions
@@ -1,5 +1,5 @@ PACKAGE = mageiawelcome -VERSION = 2.23 +VERSION = 2.24 GITPATH = git://git.mageia.org/software/mageiawelcome TEXT_FILES = Makefile @@ -25,16 +25,9 @@ cleandist: clean install: version make -C po DESTDIR=$(RPM_BUILD_ROOT)/usr install -dir: - mkdir $(PACKAGE)-$(VERSION) - dist: tar -localcopy: dir - tar c --exclude=.git $(FILES) | tar x -C $(PACKAGE)-$(VERSION) - -tar: localcopy - tar cvYf $(PACKAGE)-$(VERSION).tar.xz $(PACKAGE)-$(VERSION) - rm -fr $(PACKAGE)-$(VERSION) +tar: + git archive --prefix $(PACKAGE)-$(VERSION)/ $(VERSION) | xz -9 > $(PACKAGE)-$(VERSION).tar.xz -dist: cleandist version dir localcopy tar +dist: cleandist version tar |