forked from andrea-manzi/emi-ui
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile
executable file
·43 lines (34 loc) · 1.33 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
NAME= $(shell grep Name: *.spec | sed 's/^[^:]*:[^a-zA-Z]*//')
VERSION= $(shell grep Version: *.spec | sed 's/^[^:]*:[^0-9]*//')
RELEASE= $(shell grep Release: *.spec | cut -d"%" -f1 | sed 's/^[^:]*:[^0-9]*//')
build=$(shell pwd)/build
DATE=$(shell date "+%a, %d %b %Y %T %z")
dist=$(shell rpm --eval '%dist' | sed 's/%dist/.el5/')
default:
@echo "Nothing to do"
install:
@echo installing ...
@mkdir -p $(prefix)/usr/share/doc/ui
@install -m 0644 README.md $(prefix)/usr/share/doc/ui/
dist:
@mkdir -p $(build)/$(NAME)-$(VERSION)/
rsync -HaS --exclude ".git" --exclude "$(build)" * $(build)/$(NAME)-$(VERSION)/
cd $(build); tar --gzip -cf $(NAME)-$(VERSION).tar.gz $(NAME)-$(VERSION)/; cd -
sources: dist
cp $(build)/$(NAME)-$(VERSION).tar.gz .
prepare: dist
@mkdir -p $(build)/RPMS/noarch
@mkdir -p $(build)/SRPMS/
@mkdir -p $(build)/SPECS/
@mkdir -p $(build)/SOURCES/
@mkdir -p $(build)/BUILD/
cp $(build)/$(NAME)-$(VERSION).tar.gz $(build)/SOURCES
cp $(NAME).spec $(build)/SPECS
srpm: prepare
rpmbuild -bs --define="dist ${dist}" --define='_topdir ${build}' $(build)/SPECS/$(NAME).spec
rpm: srpm
rpmbuild --rebuild --define='_topdir ${build}' --define="dist ${dist}" $(build)/SRPMS/$(NAME)-$(VERSION)-$(RELEASE)${dist}.src.rpm
clean:
rm -f *~ $(NAME)-$(VERSION).tar.gz
rm -rf $(build)
.PHONY: dist srpm rpm sources clean