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

Revision 6011, 1.8 KB checked in by Takemikaduchi, 12 years ago (diff)

new upstream release

Line 
1Summary:        C library for parsing Adobe Flash media stream URLs
2Summary(ja):    AdobeFlash メディアストリーム URL を解析するための C ライブラリ
3Name:           libquvi
4Version:        0.4.1
5Release:        1%{?_dist_release}
6Source0:        %{name}-%{version}.tar.xz
7License:        LGPLv2.1+
8Group:          Applications/Internet
9URL:            http://quvi.sourceforge.net/
10
11BuildRequires:  gzip
12BuildRequires:  libquvi-scripts-devel
13BuildRequires:  curl-devel
14BuildRequires:  lua-devel
15
16BuildRoot:      %{_tmppath}/%{name}-%{version}-root
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* Wed Apr 11 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.4.1-1
83- initial build for Vine Linux
84
Note: See TracBrowser for help on using the repository browser.