source: projects/specs/trunk/g/grilo/grilo-vl.spec @ 6924

Revision 6924, 1.9 KB checked in by Takemikaduchi, 12 years ago (diff)

libunistring: add Requires,
others: new upstream release

Line 
1Name:           grilo
2Version:        0.2.2
3Release:        1%{?_dist_release}
4Summary:        Framework for multimedia developers
5Summary(ja):    マルチメディア開発者用のフレームワーク
6
7Group:          System Environment/Libraries
8License:        LGPLv2
9URL:            https://live.gnome.org/Grilo
10Source0:        http://download.gnome.org/sources/%{name}/0.2/%{name}-%{version}.tar.xz
11BuildRoot:      %{_tmppath}/%{name}-%{version}-root
12
13BuildRequires:  glib2-devel >= 2.29.10
14BuildRequires:  libxml2-devel
15BuildRequires:  gobject-introspection-devel
16
17Vendor:         Project Vine
18Distribution:   Vine Linux
19Packager:       Takemikaduchi
20
21
22%description
23Grilo is a framework for browsing and searching media content from various
24sources using a single API.
25
26%package        devel
27Summary:        Development files for %{name}
28Summary(ja):    %{name} の開発ファイル
29Group:          Development/Libraries
30Requires:       %{name} = %{version}-%{release}
31Requires:       pkgconfig
32
33%description    devel
34The %{name}-devel package contains libraries and header files for
35developing applications that use %{name}.
36
37
38%prep
39%setup -q
40
41%build
42%configure --disable-static
43make %{?_smp_mflags}
44
45%check
46
47%install
48rm -rf $RPM_BUILD_ROOT
49make install DESTDIR=$RPM_BUILD_ROOT
50find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
51
52%clean
53rm -rf $RPM_BUILD_ROOT
54
55
56%post -p /sbin/ldconfig
57
58%postun -p /sbin/ldconfig
59
60
61%files
62%defattr(-,root,root,-)
63%doc AUTHORS ChangeLog COPYING NEWS README
64%{_bindir}/grl-inspect-0.2
65%{_libdir}/libgrilo-0.2.so.*
66%{_libdir}/girepository-1.0/Grl-0.2.typelib
67%{_mandir}/man1/grl-inspect.1.gz
68
69%files devel
70%defattr(-,root,root,-)
71%{_includedir}/%{name}-0.2
72%{_libdir}/*.so
73%{_libdir}/pkgconfig/%{name}-0.2.pc
74%{_datadir}/gir-1.0/Grl-0.2.gir
75
76
77%changelog
78* Fri Oct 12 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.2-1
79- new upstream release
80
81* Mon Sep 17 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.0-1
82- initial build
Note: See TracBrowser for help on using the repository browser.