Changes in the spec file

pull/40/head
manuken 2012-05-28 15:29:28 +02:00
parent b0dd9a53db
commit 645fa5a01c
1 changed files with 158 additions and 0 deletions

158
Fedora 16 RPM/grive.spec Normal file
View File

@ -0,0 +1,158 @@
Name:match065-grive
Version: 50f1d81
Release: 5%{?dist}
Summary: An Open Source Linux Client for Google Drive
Group: System Environment/Base
License: GPLv2+
URL:http://match065.github.com/grive/
Source0:match065-grive-50f1d81.tar.gz
BuildRoot:%(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXX)
BuildRequires:cppunit
BuildRequires:libstdc++
BuildRequires:libstdc++-devel
BuildRequires:json-c
BuildRequires:json-c-devel
BuildRequires:openssl
BuildRequires:openssl-devel
BuildRequires:expat
BuildRequires:expat-devel
BuildRequires:cppunit
BuildRequires:libcurl
BuildRequires:libcurl-devel
BuildRequires:gdbm-devel
BuildRequires:gdbm
Requires:cppunit
Requires:libstdc++
Requires:libstdc++-devel
Requires:json-c
Requires:json-c-devel
Requires:openssl
Requires:openssl-devel
Requires:expat
Requires:expat-devel
Requires:cppunit
Requires:libcurl
Requires:libcurl-devel
Requires:gdbm-devel
Requires:gdbm
%description
Grive 0.3.0
Grive is still considered experimental. It just downloads all the files in your google drive
into the current directory. After you make some changes to the local files, run grive and
it will upload your changes back to your google drive.
There are a few things that grive does not do at the moment:
- wait for changes in file system to occur and upload. Grive only sync when you run it.
- create new files in google drive. Grive only uploads changed files that already
exist in server.
Of course these will be done in future, possibly the next release.
This is compiled in Fedora 16 x64. You need the following libraries to run:
json-c, libcurl, libstdc++ and openssl. CppUnit is also optional and required
only if you want to build the test cases.
When grive is ran for the first time, you should use the "-a" argument to grant
permission to grive to access to your Google Drive. An URL should be printed.
Go to the link. You will need to login to your google account if you haven't
done so. After granting the permission to grive, the browser will show you
an authenication code. Copy-and-paste that to the standard input of grive.
If everything works fine, grive will create a .grive file in your home directory.
It will also start downloading files from your Google Drive to your current directory.
Enjoy!
%prep
%setup -q %{name}
%build
cmake CMakeLists.txt
make DESTDIR=%{buildroot}
%install
rm -rf $RPM_BUILD_ROOT
#make install DESTDIR=%{buildroot}
#%makeinstall DESTDIR=%{buildroot}
make DESTDIR=$RPM_BUILD_ROOT install
mkdir -p %{buildroot}/usr/lib
mkdir -p %{buildroot}/usr/local/match065-grive/
mkdir -p %{buildroot}/usr/share/man/man1/
ln -s /usr/local/lib/libgrive.so %{buildroot}/usr/lib/libgrive.so
ln -s /usr/local/lib/libgrive.so.0 %{buildroot}/usr/lib/libgrive.so.0
ln -s /usr/local/lib/libgrive.so.0.1.0-pre %{buildroot}/usr/lib/libgrive.so.0.1.0-pre
cp /home/jbustos/rpmbuild/BUILD/match065-grive-50f1d81/README %{buildroot}/usr/local/match065-grive/
mv /home/jbustos/rpmbuild/BUILD/match065-grive-50f1d81/README %{buildroot}/usr/share/man/man1/grive.1
chmod -x $RPM_BUILD_ROOT%{_mandir}/man1/grive.1
%Clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
/usr/local/bin/grive
/usr/local/include/grive/drive/CommonUri.hh
/usr/local/include/grive/drive/Drive.hh
/usr/local/include/grive/drive/Entry.hh
/usr/local/include/grive/drive/Resource.hh
/usr/local/include/grive/drive/ResourceTree.hh
/usr/local/include/grive/drive/State.hh
/usr/local/include/grive/protocol/Json.hh
/usr/local/include/grive/protocol/JsonResponse.hh
/usr/local/include/grive/protocol/OAuth2.hh
/usr/local/include/grive/util/CArray.hh
/usr/local/include/grive/util/Crypt.hh
/usr/local/include/grive/util/DateTime.hh
/usr/local/include/grive/util/DefaultLog.hh
/usr/local/include/grive/util/Destroy.hh
/usr/local/include/grive/util/Exception.hh
/usr/local/include/grive/util/FileSystem.hh
/usr/local/include/grive/util/Function.hh
/usr/local/include/grive/util/Log.hh
/usr/local/include/grive/util/OS.hh
/usr/local/include/grive/util/SignalHandler.hh
/usr/local/include/grive/util/StdioFile.hh
/usr/local/include/grive/xml/Error.hh
/usr/local/include/grive/xml/Node.hh
/usr/local/include/grive/xml/NodeSet.hh
/usr/local/include/grive/xml/TreeBuilder.hh
/usr/local/lib/libgrive.so
/usr/local/lib/libgrive.so.0
/usr/local/lib/libgrive.so.0.1.0-pre
/usr/lib/libgrive.so
/usr/lib/libgrive.so.0
/usr/lib/libgrive.so.0.1.0-pre
/usr/local/match065-grive/README
/usr/share/man/man1/grive.1.gz
%post
/sbin/ldconfig || exit 1
exit 0
%postun
/sbin/ldconfig
[ "$1" -eq 0 ]
exit 0
%doc README
%changelog
* Sat May 26 2012 Jesus Bustos jesus.bustos@adminilinux.org
- Changed the name from grive to match-grive.
- Corrected previos changelog.
* Tue May 25 2012 Jesus Bustos jesus.bustos@adminlinux.org
- Added man page.