]> git.pld-linux.org Git - packages/avxsynth.git/blame - avxsynth.spec
new, version 4.0 from git
[packages/avxsynth.git] / avxsynth.spec
CommitLineData
596b454f
ER
1Summary: Linux Port of Avisynth
2Name: avxsynth
3Version: 4.0
4Release: 0.1
5License: GPL v2+
6Group: Libraries
7Source0: https://github.com/avxsynth/avxsynth/archive/master/%{name}-%{version}.tar.gz
8# Source0-md5: 9df808e436aad27a14af29af9ea03c8f
9URL: http://www.avxsynth.org/
10BuildRequires: QtCore-devel
11BuildRequires: autoconf
12BuildRequires: automake
13BuildRequires: cairo-devel
14BuildRequires: ffmpeg-devel
15BuildRequires: ffms2-devel
16BuildRequires: libjpeg-devel
17BuildRequires: libtool
18BuildRequires: log4cpp-devel
19#BuildRequires: mplayer
20BuildRequires: pango-devel
21BuildRequires: pkg-config
22BuildRequires: qt4-build
23BuildRequires: qt4-qmake
24BuildRequires: yasm
25Obsoletes: avisynth < 4.0
26BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
27
28%description
29AvxSynth is a Linux port of the AviSynth toolkit. The objective of the
30porting effort was to bring the power of AviSynth into the Linux
31world. In particular, we are interested in AviSynth as a frame server
32front-end to the encode step of our media pipeline.
33
34%package devel
35Summary: Development Headers for Avxsynth
36Group: Development/Libraries
37Requires: %{name} = %{version}-%{release}
38
39%description devel
40AvxSynth is a Linux port of the AviSynth toolkit. The objective of the
41porting effort was to bring the power of AviSynth into the Linux
42world. In particular, we are interested in AviSynth as a frame server
43front-end to the encode step of our media pipeline.
44
45This package provides development headers for avxsynth.
46
47%prep
48%setup -qc
49mv %{name}-*/* .
50
51%build
52autoreconf -i
53%configure
54%{__make}
55
56%install
57rm -rf $RPM_BUILD_ROOT
58%{__make} install \
59 DESTDIR=$RPM_BUILD_ROOT
60
61# Fix Documentation
62rm -r $RPM_BUILD_ROOT%{_docdir}/%{name}
63
64# Clear .la files
65rm $RPM_BUILD_ROOT%{_libdir}/*.la
66
67%clean
68rm -rf $RPM_BUILD_ROOT
69
70%post -p /sbin/ldconfig
71%postun -p /sbin/ldconfig
72
73%files
74%defattr(644,root,root,755)
75%doc README.md debian/changelog debian/copyright plugins/autocrop/AutoCrop.txt
76%attr(755,root,root) %{_bindir}/avxFrameServer
77%attr(755,root,root) %{_libdir}/libavxsynth.so.*.*.*
78%ghost %{_libdir}/libavxsynth.so.0
79%attr(755,root,root) %{_libdir}/libavxutils.so.*.*.*
80%ghost %{_libdir}/libavxutils.so.0
81%dir %{_libdir}/%{name}
82%attr(755,root,root) %{_libdir}/%{name}/libautocrop.so
83%attr(755,root,root) %{_libdir}/%{name}/libavxffms2.so
84%attr(755,root,root) %{_libdir}/%{name}/libavxframecapture.so
85%attr(755,root,root) %{_libdir}/%{name}/libavxsubtitle.so
86
87%files devel
88%defattr(644,root,root,755)
89%{_includedir}/%{name}
90%{_libdir}/libavxsynth.so
91%{_libdir}/libavxutils.so
92%{_pkgconfigdir}/%{name}.pc
93%{_pkgconfigdir}/avxutils.pc
This page took 0.105107 seconds and 4 git commands to generate.