Skip to content
Snippets Groups Projects
Commit 1fcc12ff authored by Andrew Lewman's avatar Andrew Lewman
Browse files

Reworked dist-rpm in order to duplicate what dist used to do, but don't actually require dist.

svn:r6437
parent f1dad00b
No related branches found
No related tags found
No related merge requests found
......@@ -23,12 +23,16 @@ dist-rpm:
for subdir in BUILD RPMS SOURCES SPECS SRPMS; do \
mkdir $$RPM_BUILD_DIR/$$subdir; \
done; \
tar zcf tor-$(VERSION).tar.gz ../tor; \
cp tor-$(VERSION).tar.gz $$RPM_BUILD_DIR/SOURCES; \
rpmbuild -ba --define "_topdir $$RPM_BUILD_DIR" tor.spec; \
mv $$RPM_BUILD_DIR/SRPMS/* .; \
mv $$RPM_BUILD_DIR/RPMS/* .; \
rm -rf $$RPM_BUILD_DIR
mkdir $$RPM_BUILD_DIR/SOURCES/tor-$(VERSION); \
cp -R ./ $$RPM_BUILD_DIR/SOURCES/tor-$(VERSION)/; \
pushd $$RPM_BUILD_DIR/SOURCES/; \
tar zcf tor-$(VERSION).tar.gz ./; \
popd; \
rpmbuild -ba --define "_topdir $$RPM_BUILD_DIR" tor.spec; \
mv $$RPM_BUILD_DIR/SRPMS/* .; \
mv $$RPM_BUILD_DIR/RPMS/* .; \
rm -rf $$RPM_BUILD_DIR
dist-osx:
@if [ "x$(prefix)" != 'x/Library/Tor' ]; then \
......
......@@ -163,8 +163,7 @@ strength of the anonymity provided. Tor is not presently suitable
for high-stakes anonymity.
%prep
#%setup -q -n %{name}-%{native_version}
%setup -q -n %{name}
%setup -q -n %{name}-%{native_version}
%build
%configure --with-tor-user=%{toruser} --with-tor-group=%{torgroup} \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment