source: projects/specs/trunk/lib/libq/libquvi/libquvi-vl.spec @ 9157

Revision 9157, 1.9 KB checked in by inagaki, 9 years ago (diff)

2014-12-16 Ryoichi INAGAKI <ryo1@…>

  • golang, python-subprocess32: added Group
  • libquvi: changed Group
  • libquvi-scripts: updated, changed Group
  • pilot-link: added patches


Line 
1Summary:        C library for parsing Adobe Flash media stream URLs
2Summary(ja):    AdobeFlash メディアストリーム URL を解析するための C ライブラリ
3Name:           libquvi
4Version:        0.4.1
5Release:        2%{?_dist_release}
6License:        LGPLv2.1+
7Group:          System Environment/Libraries
8URL:            http://quvi.sourceforge.net/
9
10Source0:        %{name}-%{version}.tar.xz
11
12BuildRoot:      %{_tmppath}/%{name}-%{version}-root
13BuildRequires:  curl-devel
14BuildRequires:  gzip
15BuildRequires:  libquvi-scripts-devel
16BuildRequires:  lua-devel
17
18Vendor: Project Vine
19Distribution: Vine Linux
20Packager: Takemikaduchi
21
22
23%description
24libquvi is a small C library that can be used to parse Flash media stream URLs.
25It originates from the idea of working around the Flash requirement found on many
26media hosting websites (e.g. YouTube).
27
28
29%package devel
30Summary:        Development tools for libquvi
31Summary(ja):    libquvi の開発環境
32Group:          Development/Libraries
33Requires:       %{name} = %{version}-%{release}
34Requires:       pkgconfig
35Provides:       quvi-devel
36Obsoletes:      quvi-devel < 0.4
37
38%description devel
39Header files and libraries for building a extension library for the
40libquvi.
41
42
43%prep
44%setup -q
45
46
47%build
48%configure --disable-static
49%{__make} %{?_smp_mflags}
50
51
52%install
53%{__rm} -rf ${RPM_BUILD_ROOT}
54%{__make} install DESTDIR=${RPM_BUILD_ROOT}
55
56find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
57
58gzip $RPM_BUILD_ROOT%{_mandir}/man3/libquvi.3
59
60
61%clean
62%{__rm} -rf ${RPM_BUILD_ROOT}
63
64
65%post -p /sbin/ldconfig
66%postun -p /sbin/ldconfig
67
68
69%files
70%defattr(-,root,root,-)
71%doc COPYING ChangeLog NEWS README
72%{_libdir}/libquvi.so.*
73%{_mandir}/man3/libquvi.3.gz
74
75%files devel
76%defattr(-,root,root,-)
77%{_includedir}/quvi
78%{_libdir}/libquvi.so
79%{_libdir}/pkgconfig/libquvi.pc
80
81%changelog
82* Tue Dec 16 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 0.4.1-2
83- moved libquvi to System Environment/Libraries Group
84
85* Wed Apr 11 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.4.1-1
86- initial build for Vine Linux
87
Note: See TracBrowser for help on using the repository browser.