source: projects/specs/trunk/lib/libg/libgit2-glib/libgit2-glib-vl.spec @ 9791

Revision 9791, 2.5 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 
1Summary:        GLib wrapper for libgit2
2Summary(ja):    libgit2 用 GLib ラッパー
3Name:           libgit2-glib
4Version:        0.23.6
5Release:        1%{?_dist_release}
6License:        LGPLv2.1
7Group:          System Environment/Libraries
8URL:            https://wiki.gnome.org/Projects/Libgit2-glib
9
10Source0:        http://ftp.gnome.org/pub/GNOME/sources/%{name}/0.23/%{name}-%{version}.tar.xz
11
12BuildRequires: glib2-devel
13BuildRequires: libgit2-devel
14BuildRequires: gobject-introspection-devel
15BuildRequires: gtk-doc
16
17BuildRoot:      %{_tmppath}/%{name}-%{version}-root
18
19Vendor:         Project Vine
20Distribution:   Vine Linux
21Packager:       Takemikaduchi
22
23%description
24libgit2-glib is a glib wrapper library around the libgit2 git access library.
25
26%description -l ja
27libgit2-glib は GIT アクセス用ライブラリ libgit2 用の glib ラッパーライブラリです。
28
29
30%package        devel
31Summary:        Development tools for %{name}
32Summary(ja):    %{name} の開発環境
33Group:          Development/Libraries
34Requires:       %{name} = %{version}-%{release}
35Requires:       pkgconfig
36
37%description    devel
38Header files and libraries for building a extension library for the %{name}.
39
40
41%package        docs
42Summary:        Documentation for %{name}
43Summary(ja):    %{name} 用のドキュメント
44Group:          Documentation
45BuildArch:      noarch
46
47%description    docs
48This package contains documentation for %{name}.
49
50
51%prep
52%setup -q
53
54
55%build
56%configure \
57        --disable-static
58
59%{__make} %{?_smp_mflags}
60
61
62%install
63%{__rm} -rf ${RPM_BUILD_ROOT}
64%{__make} install DESTDIR=${RPM_BUILD_ROOT}
65
66find $RPM_BUILD_ROOT -name '*.a' -exec rm -f {} \;
67find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
68
69
70%clean
71%{__rm} -rf ${RPM_BUILD_ROOT}
72
73%post -p /sbin/ldconfig
74
75%postun -p /sbin/ldconfig
76
77
78%files
79%defattr(-,root,root,-)
80%doc COPYING ChangeLog NEWS README
81%{_libdir}/%{name}-1.0.so.*
82%{_libdir}/girepository-1.0/Ggit-1.0.typelib
83
84%files devel
85%defattr(-,root,root,-)
86%{_includedir}/%{name}-1.0
87%{_libdir}/%{name}-1.0.so
88%{_libdir}/pkgconfig/%{name}-1.0.pc
89%{_datadir}/gir-1.0/Ggit-1.0.gir
90
91%files docs
92%defattr(-,root,root,-)
93%{_datadir}/gtk-doc/html/%{name}-1.0
94
95
96%changelog
97* Sun Nov 01 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.23.6-1
98- new upstream release
99
100* Sun May 03 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.22.8-1
101- new upstream release
102
103* Sun Apr 19 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.22.6-1
104- new upstream release
105
106* Sun Apr 05 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.22.2-2
107- rebuild with libgit2-0.22.2-2
108
109* Wed Apr 01 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.22.2-1
110- initial build
111
Note: See TracBrowser for help on using the repository browser.