[corebird] Initial import (#1026380).

ryan lerch ryanlerch at fedoraproject.org
Tue Dec 3 19:54:24 UTC 2013


commit 752b97cd2a7b3805805e3c724d9c452b8c556fef
Author: Ryan Lerch <ryanlerch at gmail.com>
Date:   Tue Dec 3 14:53:38 2013 -0500

    Initial import (#1026380).

 .gitignore    |    1 +
 corebird.spec |   71 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 sources       |    1 +
 3 files changed, 73 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..4990b8c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/corebird-0.5.tar.gz
diff --git a/corebird.spec b/corebird.spec
new file mode 100644
index 0000000..98ccd56
--- /dev/null
+++ b/corebird.spec
@@ -0,0 +1,71 @@
+Name:            corebird
+Version:        0.5
+Release:        2%{?dist}
+Summary:        Native GTK Twitter client
+License:        GPLv3+
+URL:            http://corebird.baedert.org/
+Source0:        https://github.com/baedert/corebird/archive/%{name}-%{version}.tar.gz
+BuildRequires:        gtk3-devel >= 3.9
+BuildRequires:        glib2-devel >= 2.38
+BuildRequires:        rest-devel
+BuildRequires:        json-glib-devel
+BuildRequires:        libnotify-devel
+BuildRequires:        sqlite-devel
+BuildRequires:        libsoup-devel
+BuildRequires:        vala-devel
+BuildRequires:        cmake
+BuildRequires:        librsvg2-tools
+BuildRequires:        desktop-file-utils
+BuildRequires:        libgee-devel
+
+# For icon directories
+Requires:           hicolor-icon-theme
+
+%description
+Native GTK Twitter client for the Linux desktop.
+
+%prep
+%setup -q
+
+%build
+%{cmake} .
+make %{?_smp_mflags}
+
+%install
+make install DESTDIR=%{buildroot}
+
+desktop-file-validate %{buildroot}/%{_datadir}/applications/%{name}.desktop
+
+%post
+/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
+
+%postun
+if [ $1 -eq 0 ] ; then
+    /usr/bin/glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
+    /bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null
+    /usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
+fi
+
+%posttrans
+/usr/bin/glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
+/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
+
+%files
+%doc COPYING README.md
+%{_bindir}/%{name}
+%{_datadir}/applications/%{name}.desktop
+%{_datadir}/%{name}/
+%{_datadir}/glib-2.0/schemas/org.baedert.%{name}.gschema.xml
+%{_datadir}/icons/hicolor/*/apps/%{name}.png
+%{_datadir}/appdata/
+
+%changelog
+* Tue Dec 03 2013 Ryan Lerch <ryanlerch at fedoraproject.org> 0.5-2
+- Removed line from the spec that removed the old font files
+- Changed the spec so the appdata dir is co-owned 
+
+* Fri Nov 29 2013 Ankur Sinha <ankursinha AT fedoraproject DOT org> 0.5-1
+- Update to 0.5
+
+* Mon Nov 04 2013 Ryan Lerch <ryanlerch at fedoraproject.org> - 0.4-0
+- initial package
diff --git a/sources b/sources
index e69de29..5c33f8d 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+f995c3f6c72d3e5ee7e760415c744802  corebird-0.5.tar.gz


More information about the scm-commits mailing list