source: projects/specs/trunk/lib/libc/libcryptui/libcryptui-vl.spec @ 5168

Revision 5168, 3.1 KB checked in by Takemikaduchi, 13 years ago (diff)

new upstream release

Line 
1Summary:        Library for OpenPGP prompts
2Name:           libcryptui
3Version:        3.2.2
4Release:        1%{?_dist_release}
5Source0:        http://ftp.gnome.org/pub/GNOME/sources/%{name}/3.2/%{name}-%{version}.tar.xz
6License:        GPLv2
7Group:          System Environment/Libraries
8URL:            http://git.gnome.org/browse/libcryptui/
9
10BuildRequires:  glib2-devel
11BuildRequires:  GConf2-devel
12BuildRequires:  gtk3-devel
13BuildRequires:  gpgme-devel >= 1.0.0
14BuildRequires:  libgnome-keyring-devel
15BuildRequires:  libnotify-devel
16BuildRequires:  libSM-devel
17BuildRequires:  gnome-doc-utils >= 0.3.2
18
19BuildRoot:      %{_tmppath}/%{name}-%{version}-root
20
21Vendor: Project Vine
22Distribution: Vine Linux
23Packager: Takemikaduchi
24
25
26%description
27libcryptui is a library used for prompting for PGP keys. It's likely that this
28library will become deprecated in the near future.
29
30
31%package        devel
32Summary:        Development tools for libcryptui
33Summary(ja):    libcryptui の開発環境
34Group:          Development/Libraries
35Requires:       %{name} = %{version}-%{release}
36Requires:       pkgconfig
37
38%description devel
39Header files and libraries for building a extension library for the
40libcryptui.
41
42
43%package        doc
44Summary:        Documentation for libcryptui
45Summary(ja):    libcryptui 用のドキュメント
46Group:          Documentation
47Requires:       %{name} = %{version}-%{release}
48BuildArch:      noarch
49
50
51%description    doc
52This package contains documentation for libcryptui.
53
54
55%prep
56%setup -q
57
58
59%build
60autoreconf -fi
61%configure --disable-static
62%{__make} %{?_smp_mflags}
63
64
65%install
66%{__rm} -rf ${RPM_BUILD_ROOT}
67%{__make} install DESTDIR=${RPM_BUILD_ROOT}
68
69find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
70
71# conflict with seahorse
72rm -rf $RPM_BUILD_ROOT%{_sysconfdir}
73rm -rf $RPM_BUILD_ROOT%{_datadir}/locale
74
75%clean
76%{__rm} -rf ${RPM_BUILD_ROOT}
77
78%post -p /sbin/ldconfig
79
80%postun
81/sbin/ldconfig
82if [ $1 -eq 0 ] ; then
83        glib-compile-schemas %{_datadir}/glib-2.0/schemas ||:
84fi
85
86%posttrans
87glib-compile-schemas %{_datadir}/glib-2.0/schemas ||:
88
89
90%files
91%defattr(-,root,root,-)
92%doc COPYING ChangeLog NEWS README
93%{_bindir}/seahorse-daemon
94%{_libdir}/libcryptui.so.*
95%{_libdir}/girepository-1.0/CryptUI-0.0.typelib
96%{_datadir}/GConf/gsettings/org.gnome.seahorse.recipients.convert
97%{_datadir}/dbus-1/services/org.gnome.seahorse.service
98%{_datadir}/glib-2.0/schemas/org.gnome.seahorse.recipients.gschema.xml
99%{_datadir}/pixmaps/cryptui/*/*
100%{_datadir}/cryptui/ui/*.xml
101%{_mandir}/man1/seahorse-daemon.1.gz
102
103%files devel
104%defattr(-,root,root,-)
105%{_includedir}/libcryptui
106%{_libdir}/libcryptui.so
107%{_libdir}/pkgconfig/cryptui-0.0.pc
108%{_datadir}/gir-1.0/CryptUI-0.0.gir
109
110%files doc
111%defattr(-,root,root,-)
112%{_datadir}/gtk-doc/html/libcryptui
113
114
115%changelog
116* Mon Nov 21 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.2-1
117- new upstream release
118
119* Fri Sep 30 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.0-1
120- new upstream release
121
122* Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.91-1
123- new upstream release
124- remove Patch0
125
126* Sat Sep 03 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.4-2
127- add Patch0 (libcryptui-3.1.4-bug655291.patch)
128
129* Tue Aug 16 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.4-1
130- initial build for Vine Linux
131
Note: See TracBrowser for help on using the repository browser.