source: projects/specs/trunk/lib/libm/libmediaart/libmediaart-vl.spec @ 9073

Revision 9073, 2.4 KB checked in by Takemikaduchi, 10 years ago (diff)

GNOME 3.14.1

Line 
1Name:           libmediaart
2Version:        0.7.0
3Release:        1%{?_dist_release}
4Summary:        Library for handling media art
5Summary(ja):    メディア・アートを取得するためのライブラリ
6
7Group:          System Environment/Libraries
8License:        LGPLv2+
9URL:            https://git.gnome.org/browse/libmediaart/
10Source0:        http://download.gnome.org/sources/%{name}/0.7/%{name}-%{version}.tar.xz
11
12BuildRoot:      %{_tmppath}/%{name}-%{version}-root
13
14BuildRequires:  glib2-devel >= 2.35.0
15BuildRequires:  gobject-introspection-devel >= 1.30.0
16BuildRequires:  gdk-pixbuf2-devel >= 2.12.0
17BuildRequires:  gtk-doc
18
19Vendor:         Project Vine
20Distribution:   Vine Linux
21Packager:       Takemikaduchi
22
23
24%description
25Library tasked with managing, extracting and handling media art cache
26
27
28%package        devel
29Summary:        Development files for %{name}
30Summary(ja):    %{name} の開発ファイル
31Group:          Development/Libraries
32Requires:       %{name} = %{version}-%{release}
33Requires:       pkgconfig
34
35
36%description    devel
37The %{name}-devel package contains libraries and header files for
38developing applications that use %{name}.
39
40
41%package        docs
42Summary:        Documentation for %{name}
43Summary(ja):    %{name} 用のドキュメント
44Group:          Documentation
45Requires:       %{name} = %{version}-%{release}
46BuildArch:      noarch
47
48%description    docs
49This package contains documentation for %{name}.
50
51
52%prep
53%setup -q
54
55%build
56autoreconf -if
57%configure --disable-static
58make %{?_smp_mflags}
59
60%check
61
62%install
63rm -rf $RPM_BUILD_ROOT
64make install DESTDIR=$RPM_BUILD_ROOT
65find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
66
67%clean
68rm -rf $RPM_BUILD_ROOT
69
70
71%post -p /sbin/ldconfig
72
73%postun -p /sbin/ldconfig
74
75
76%files
77%defattr(-,root,root,-)
78%doc AUTHORS ChangeLog COPYING NEWS README
79%{_libdir}/%{name}-1.0.so.*
80%{_libdir}/girepository-1.0/MediaArt-1.0.typelib
81
82%files devel
83%defattr(-,root,root,-)
84%{_includedir}/%{name}-1.0
85%{_libdir}/%{name}-1.0.so
86%{_libdir}/pkgconfig/%{name}-1.0.pc
87%{_datadir}/gir-1.0/MediaArt-1.0.gir
88
89%files docs
90%defattr(-,root,root,-)
91%{_datadir}/gtk-doc/html/%{name}
92
93
94%changelog
95* Sun Oct 26 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.7.0-1
96- new upstream release
97
98* Sun Apr 13 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.4.0-1
99- new upstream release
100
101* Sun Mar 30 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.0-1
102- initial build
103
Note: See TracBrowser for help on using the repository browser.