7f5477d4a5
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/json-glib?expand=0&rev=0bfc6f332cc643af574724ae3732b357
121 lines
3.9 KiB
RPMSpec
121 lines
3.9 KiB
RPMSpec
#
|
|
# spec file for package json-glib (Version 0.11.2)
|
|
#
|
|
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
# Copyright (c) 2009 Dominique Leuenberger, Almere, The Netherlands.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
|
|
Name: json-glib
|
|
Version: 0.11.2
|
|
Release: 2
|
|
Summary: Library for JavaScript Object Notation format
|
|
License: LGPLv2.1+
|
|
Group: Development/Libraries/C and C++
|
|
Url: http://live.gnome.org/JsonGlib
|
|
Source: %{name}-%{version}.tar.bz2
|
|
BuildRequires: glib2-devel
|
|
BuildRequires: gobject-introspection-devel
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
JSON is a lightweight data-interchange format.It is easy for humans to
|
|
read and write. It is easy for machines to parse and generate.
|
|
|
|
JSON-GLib provides a parser and a generator GObject classes and various
|
|
wrappers for the complex data types employed by JSON, such as arrays
|
|
and objects.
|
|
|
|
JSON-GLib uses GLib native data types and the generic value container
|
|
GValue for ease of development. It also provides integration with the
|
|
GObject classes for direct serialization into, and deserialization from,
|
|
JSON data streams.
|
|
|
|
%package -n libjson-glib-1_0-0
|
|
License: LGPLv2.1+
|
|
Summary: Library for JavaScript Object Notation format
|
|
Group: Development/Libraries/C and C++
|
|
|
|
%description -n libjson-glib-1_0-0
|
|
JSON is a lightweight data-interchange format.It is easy for humans to
|
|
read and write. It is easy for machines to parse and generate.
|
|
|
|
JSON-GLib provides a parser and a generator GObject classes and various
|
|
wrappers for the complex data types employed by JSON, such as arrays
|
|
and objects.
|
|
|
|
JSON-GLib uses GLib native data types and the generic value container
|
|
GValue for ease of development. It also provides integration with the
|
|
GObject classes for direct serialization into, and deserialization from,
|
|
JSON data streams.
|
|
|
|
%package devel
|
|
License: LGPLv2.1+
|
|
Summary: Library for JavaScript Object Notation format - Development Files
|
|
Group: Development/Libraries/C and C++
|
|
Requires: libjson-glib-1_0-0 = %{version}
|
|
|
|
%description devel
|
|
JSON is a lightweight data-interchange format.It is easy for humans to
|
|
read and write. It is easy for machines to parse and generate.
|
|
|
|
JSON-GLib provides a parser and a generator GObject classes and various
|
|
wrappers for the complex data types employed by JSON, such as arrays
|
|
and objects.
|
|
|
|
JSON-GLib uses GLib native data types and the generic value container
|
|
GValue for ease of development. It also provides integration with the
|
|
GObject classes for direct serialization into, and deserialization from,
|
|
JSON data streams.
|
|
|
|
This package contains development files needed to develop with the
|
|
json-glib library.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
%configure
|
|
%__make %{?jobs:-j%jobs}
|
|
|
|
%install
|
|
%makeinstall
|
|
%__rm %{buildroot}%{_libdir}/*.la
|
|
|
|
%clean
|
|
rm -rf %{buildroot}
|
|
|
|
%post -n libjson-glib-1_0-0 -p /sbin/ldconfig
|
|
|
|
%postun -n libjson-glib-1_0-0 -p /sbin/ldconfig
|
|
|
|
%files -n libjson-glib-1_0-0
|
|
%defattr(-,root,root)
|
|
%doc AUTHORS ChangeLog COPYING NEWS README
|
|
%{_libdir}/*.so.*
|
|
%{_libdir}/girepository-1.0/Json-1.0.typelib
|
|
|
|
%files devel
|
|
%defattr(-,root,root)
|
|
%{_includedir}/%{name}-1.0
|
|
%{_libdir}/*.so
|
|
%{_libdir}/pkgconfig/*.pc
|
|
%{_datadir}/gir-1.0/*.gir
|
|
%dir %{_datadir}/gtk-doc
|
|
%dir %{_datadir}/gtk-doc/html
|
|
%{_datadir}/gtk-doc/html/%{name}
|
|
|
|
%changelog
|