source: projects/specs/trunk/q/quvi/quvi-vl.spec @ 4590

Revision 4590, 1.7 KB checked in by Takemikaduchi, 13 years ago (diff)

fix BTS:1193,1195

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