From c266a8569c147c9a2b9741fff9d04159aeadbf90 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 23:28:26 +0100 Subject: [PATCH] package created using the webbuild interface [release 0.5.0-1mamba;Thu Jan 28 2016] --- README.md | 2 ++ grive2.spec | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 grive2.spec diff --git a/README.md b/README.md index 606fedb..258d1be 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # grive2 +Google Drive client with the support for the new Drive REST API and partial sync. + diff --git a/grive2.spec b/grive2.spec new file mode 100644 index 0000000..3cc274f --- /dev/null +++ b/grive2.spec @@ -0,0 +1,56 @@ +Name: grive2 +Version: 0.5.0 +Release: 1mamba +Summary: Google Drive client +Group: Applications/Networking +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/vitalif/grive2 +## GITSOURCE https://github.com/vitalif/grive2.git v0.5.0 +Source: https://github.com/vitalif/grive2.git/v%{version}/grive2-%{version}.tar.bz2 +License: GPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libbinutils-devel +BuildRequires: libboost-devel +BuildRequires: libcurl-devel +BuildRequires: libexpat-devel +BuildRequires: libgcc +BuildRequires: libgcrypt-devel +BuildRequires: libgpg-error-devel +BuildRequires: libstdc++6-devel +BuildRequires: libyajl-devel +BuildRequires: libz-devel +## AUTOBUILDREQ-END +BuildRequires: cmake +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +Google Drive client with the support for the new Drive REST API and partial sync. + +%debug_package + +%prep +%setup -q + +%build +%cmake -d build +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall -C build + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{_bindir}/grive +%{_mandir}/man1/grive.1.gz +%doc COPYING + +%changelog +* Thu Jan 28 2016 Silvan Calarco 0.5.0-1mamba +- package created using the webbuild interface