source: projects/specs/trunk/lib/liba/libaccounts-glib/libaccounts-glib-vl.spec @ 9791

Revision 9791, 2.8 KB checked in by Takemikaduchi, 8 years ago (diff)

GNOME 3.18.1, BlueZ 5.35, ICU 56.1, Mesa 11.0.4, PulseAudio 7.1, xserver 1.17.4, etc.

Line 
1%define repo_id 17201ad512e86d248ac158046ac322e7164adc87
2
3Name:           libaccounts-glib
4Version:        1.18
5Release:        1%{?_dist_release}
6Summary:        A low-level library for managing accounts settings.
7
8Group:          System Environment/Libraries
9License:        LGPL
10URL:            https://gitlab.com/accounts-sso/libaccounts-glib
11Source0:        %{name}-%{version}.tar.gz
12
13BuildRoot:      %{_tmppath}/%{name}-%{version}-root
14
15BuildRequires:  glib2-devel
16BuildRequires:  libxml2-devel
17BuildRequires:  gobject-introspection-devel
18BuildRequires:  sqlite3-devel
19BuildRequires:  pygobject3-devel
20BuildRequires:  check-devel
21BuildRequires:  gtk-doc
22BuildRequires:  docbook-style-xsl
23BuildRequires:  autoconf
24
25Vendor: Project Vine
26Distribution: Vine Linux
27Packager: Takemikaduchi
28
29
30%description
31This project is a library for managing accounts which can be used from GLib
32applications.
33
34
35%package                devel
36Summary:        Development tools for %{name}
37Summary(ja):    %{name}
38Group:          Development/Libraries
39Requires:       %{name} = %{version}-%{release}
40Requires:       pkgconfig
41
42%description    devel
43Header files and libraries for building a extension library for the
44%{name}.
45
46
47%package        vala
48Summary:        Vala bindings for %{name}
49Summary(ja):    %{name} の Vala バインディング
50Group:          Development/Libraries
51Requires:       %{name} = %{version}-%{release}
52Requires:       vala
53
54%description    vala
55Vala bindings for %{name}.
56
57
58%prep
59%setup -q -n %{name}-%{version}-%{repo_id}
60
61%build
62export CFLAGS="$RPM_OPT_FLAGS -Wno-error=deprecated-declarations"
63NOCONFIGURE=1 ./autogen.sh
64%configure \
65        --disable-static \
66        --disable-gtk-doc
67
68
69make %{?_smp_mflags}
70
71%install
72rm -rf $RPM_BUILD_ROOT
73
74make DESTDIR=$RPM_BUILD_ROOT install
75
76rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
77
78%clean
79rm -rf $RPM_BUILD_ROOT
80
81%post -p /sbin/ldconfig
82
83%postun -p /sbin/ldconfig
84
85%files
86%defattr(-,root,root,-)
87%doc ChangeLog AUTHORS COPYING NEWS README
88%{_bindir}/ag-backup
89%{_bindir}/ag-tool
90%{_libdir}/%{name}.so.*
91%{_libdir}/girepository-1.0/Accounts-1.0.typelib
92%{_libdir}/%{name}
93%{python_sitearch}/gi/overrides/Accounts.*
94%{_datadir}/backup-framework/applications/accounts.conf
95%{_datadir}/dbus-1/interfaces/com.google.code.AccountsSSO.Accounts.Manager.xml
96%{_datadir}/%{name}
97%{_datadir}/xml/accounts/schema/dtd/accounts-*.dtd
98%{_mandir}/man1/ag-backup.1.gz
99%{_mandir}/man1/ag-tool.1.gz
100
101%files devel
102%defattr(-, root, root, -)
103%{_includedir}/%{name}
104%{_libdir}/%{name}.so
105%{_libdir}/pkgconfig/%{name}.pc
106%{_datadir}/gir-1.0/Accounts-1.0.gir
107
108%files vala
109%defattr(-, root, root, -)
110%{_datadir}/vala/vapi/%{name}.deps
111%{_datadir}/vala/vapi/%{name}.vapi
112
113
114%changelog
115* Sun Nov 01 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.18-1
116- new upstream release
117- remove %%{name}-docs subpackage
118
119* Sun Apr 20 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.16-1
120- initial build
121
Note: See TracBrowser for help on using the repository browser.