source: projects/specs/trunk/lib/libz/libzapojit/libzapojit-vl.spec @ 6890

Revision 6890, 2.3 KB checked in by Takemikaduchi, 11 years ago (diff)

GNOME-3.6.0 & Cinnamon-1.6.1

Line 
1Name:           libzapojit
2Version:        0.0.2
3Release:        1%{?_dist_release}
4Summary:        GLib/GObject wrapper for the SkyDrive and Hotmail REST APIs
5Summary(ja):    SkyDrive と Hotmail の REST API 用 GLib/GObject ラッパー
6
7Group:          System Environment/Libraries
8License:        LGPLv2+
9URL:            https://live.gnome.org/Zapojit
10Source0:        http://download.gnome.org/sources/%{name}/0.0/%{name}-%{version}.tar.xz
11BuildRoot:      %{_tmppath}/%{name}-%{version}-root
12
13BuildRequires:  glib2-devel >= 2.12.0
14BuildRequires:  json-glib-devel
15BuildRequires:  rest-devel
16BuildRequires:  libsoup-devel
17BuildRequires:  gnome-online-accounts-devel
18
19Vendor:         Project Vine
20Distribution:   Vine Linux
21Packager:       Takemikaduchi
22
23
24%description
25Zapojit is a GLib/GObject wrapper for the SkyDrive and Hotmail REST APIs.
26
27
28%package        devel
29Summary:        Development files for %{name}
30Summary(ja):    %{name} の開発ファイル
31Group:          Development/Libraries
32Requires:       %{name} = %{version}-%{release}
33Requires:       pkgconfig
34Requires:       gobject-introspection-devel
35
36%description    devel
37The %{name}-devel package contains libraries and header files for
38developing applications that use %{name}.
39
40
41%package        doc
42Summary:        Documentation for %{name}
43Summary(ja):    %{name} 用のドキュメント
44Group:          Documentation
45Requires:       %{name} = %{version}-%{release}
46BuildArch:      noarch
47
48%description    doc
49This package contains documentation for %{name}.
50
51
52%prep
53%setup -q
54
55%build
56%configure --disable-static
57make %{?_smp_mflags}
58
59
60%install
61rm -rf $RPM_BUILD_ROOT
62make install DESTDIR=$RPM_BUILD_ROOT
63find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
64
65rm -rf $RPM_BUILD_ROOT/%{_docdir}/%{name}
66
67
68%clean
69rm -rf $RPM_BUILD_ROOT
70
71
72%post -p /sbin/ldconfig
73
74%postun -p /sbin/ldconfig
75
76
77%files
78%defattr(-,root,root,-)
79%doc AUTHORS ChangeLog COPYING NEWS README
80%{_libdir}/%{name}*.so.*
81%{_libdir}/girepository-1.0/Zpj-0.0.typelib
82
83%files devel
84%defattr(-,root,root,-)
85%{_includedir}/%{name}-0.0
86%{_libdir}/%{name}*.so
87%{_libdir}/pkgconfig/zapojit-0.0.pc
88%{_datadir}/gir-1.0/Zpj-0.0.gir
89
90%files doc
91%defattr(-,root,root,-)
92%{_datadir}/gtk-doc/html/%{name}-0.0
93
94
95%changelog
96* Sun Sep 30 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.0.2-1
97- initial build
Note: See TracBrowser for help on using the repository browser.