-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile.am
38 lines (33 loc) · 1.07 KB
/
Makefile.am
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
EXTRA_DIST = README LICENSE pam_rps.spec
SUBDIRS = src
GITTAG=$(PACKAGE)-$(VERSION)
distdir=$(GITTAG)
tag:
test $(GITTAG) = `rpm -q --specfile --qf '%{name}-%{version}\n' $(srcdir)/$(PACKAGE).spec | head -n 1`
git tag $(GITTAG)
force-tag:
git tag -f $(GITTAG)
ORIGIN=$(shell git config remote.origin.url 2> /dev/null || /bin/pwd)
ARCHIVEOUTDIR=$(shell cd $(top_srcdir) && pwd)
archive:
repo=`pwd`; \
tmpdir=`mktemp -d /tmp/make_archive_XXXXXX`; \
if test -d "$$tmpdir" ; then \
git clone $(ORIGIN) $$tmpdir/pam_rps ;\
cd $$tmpdir/pam_rps;\
git checkout $(GITTAG);\
./autogen;\
make dist;\
mkdir -p $$tmpdir/rpm-build-top;\
rpmbuild \
--define "_topdir $$tmpdir/rpm-build-top" \
--define "_sourcedir $$tmpdir/rpm-build-top" \
--define "_specdir $$tmpdir/rpm-build-top" \
--define "_builddir $$tmpdir/rpm-build-top" \
--define "_srpmdir $$tmpdir/rpm-build-top" \
--define "_rpmdir $$tmpdir/rpm-build-top" \
--define "_rpmdir $$tmpdir/rpm-build-top" \
-tb $(distdir).tar.gz;\
cp -v $(distdir).tar.gz $(ARCHIVEOUTDIR)/;\
rm -fr $$tmpdir;\
fi