From c755a7ff9b9ab30fa33abb510fe4f77c50ebe178 Mon Sep 17 00:00:00 2001 From: wilsonianb Date: Fri, 9 Oct 2015 13:18:40 -0700 Subject: [PATCH] Remove rippled.spec rpm file --- Builds/rpm/rippled.spec | 54 ----------------------------------------- 1 file changed, 54 deletions(-) delete mode 100644 Builds/rpm/rippled.spec diff --git a/Builds/rpm/rippled.spec b/Builds/rpm/rippled.spec deleted file mode 100644 index 7b91f600c..000000000 --- a/Builds/rpm/rippled.spec +++ /dev/null @@ -1,54 +0,0 @@ -%define rippled_branch %(echo $RIPPLED_BRANCH) -Name: rippled -# Version must be limited to MAJOR.MINOR.PATCH -Version: 0.30.1 -# Release should include either the build or hotfix number (ex: hf1%{?dist} or b2%{?dist}) -# If there is no b# or hf#, then use 1%{?dist} -Release: b2%{?dist} -Summary: Ripple peer-to-peer network daemon - -Group: Applications/Internet -License: ISC -URL: https://github.com/ripple/rippled - -# curl -L -o SOURCES/rippled-release.zip https://github.com/ripple/rippled/archive/${RIPPLED_BRANCH}.zip -Source0: rippled-%{rippled_branch}.zip -BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) - -BuildRequires: gcc-c++ scons openssl-devel protobuf-devel -Requires: protobuf openssl - - -%description -Rippled is the server component of the Ripple network. - - -%prep -%setup -n rippled-%{rippled_branch} - - -%build -scons -j `grep -c processor /proc/cpuinfo` - - -%install -rm -rf %{buildroot} -mkdir -p %{buildroot}/usr/share/%{name} -cp LICENSE %{buildroot}/usr/share/%{name}/ -mkdir -p %{buildroot}/usr/bin -cp build/rippled %{buildroot}/usr/bin/rippled -mkdir -p %{buildroot}/etc/%{name} -cp doc/rippled-example.cfg %{buildroot}/etc/%{name}/rippled.cfg -mkdir -p %{buildroot}/var/lib/%{name}/db -mkdir -p %{buildroot}/var/log/%{name} - - -%clean -rm -rf %{buildroot} - - -%files -%defattr(-,root,root,-) -/usr/bin/rippled -/usr/share/rippled/LICENSE -%config(noreplace) /etc/rippled/rippled.cfg