]> git.pld-linux.org Git - packages/vcdimager.git/blob - vcdimager.spec
- unify ftp.gnu.org urls
[packages/vcdimager.git] / vcdimager.spec
1 #
2 # Conditional build:
3 %bcond_without  static_libs     # don't build static library
4 #
5 Summary:        VideoCD (pre-)mastering and ripping tools
6 Summary(pl.UTF-8):      Narzędzia do tworzenia i odczytu VideoCD
7 Name:           vcdimager
8 Version:        0.7.23
9 Release:        3
10 License:        GPL
11 Group:          Applications/File
12 #Source0:       http://www.vcdimager.org/pub/vcdimager/vcdimager-0.7/%{name}-%{version}.tar.gz
13 Source0:        http://ftp.gnu.org/gnu/vcdimager/%{name}-%{version}.tar.gz
14 # Source0-md5:  5e7d80fdbf0037ad20e438f2a9573253
15 Patch0:         %{name}-info.patch
16 URL:            http://www.gnu.org/software/vcdimager/
17 BuildRequires:  autoconf >= 2.52
18 BuildRequires:  automake >= 1.6.0
19 BuildRequires:  libcdio-devel >= 0.72
20 BuildRequires:  libtool >= 1:1.4.2-9
21 BuildRequires:  libxml2-devel >= 2.6.11
22 BuildRequires:  pkgconfig
23 BuildRequires:  popt-devel >= 1.7
24 BuildRequires:  texinfo
25 Requires(post,postun):  /sbin/ldconfig
26 Requires:       libcdio >= 0.72
27 Requires:       libxml2 >= 2.6.11
28 Requires:       popt >= 1.7
29 Obsoletes:      vcdimager-cdio
30 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
31
32 %define         _noautoreqdep   libvcd.so.0 libvcdinfo.so.0
33
34 %description
35 VCDImager allows you to create VideoCD BIN/CUE CD images from mpeg
36 files which can be burned with cdrdao or any other program capable of
37 burning BIN/CUE files. VCDRip, which comes with VCDImager, does the
38 reverse operation. That is, ripping mpeg streams from images (and
39 already burned VideoCDs) and showing some information about the
40 VideoCD.
41
42 %description -l pl.UTF-8
43 VCDImager służy do tworzenia obrazów VideoCD BIN/CUE z plików mpeg,
44 które następnie mogą być wypalone za pomocą cdrdao lub innego programu
45 zdolnego do wypalania plików BIN/CUE. VCDRip dostarczany wraz z
46 VCDImager pozwala na wykonanie odwrotnej operacji tzn. zrzucenia
47 strumienia mpeg z obrazów (oraz już wypalonych płyt VideoCD).
48
49 %package devel
50 Summary:        Header files for vcd libraries
51 Summary(pl.UTF-8):      Pliki nagłówkowe bibliotek vcd
52 Group:          Development/Libraries
53 Requires:       %{name} = %{version}-%{release}
54 Requires:       libcdio-devel >= 0.72
55 Obsoletes:      vcdimager-cdio-devel
56
57 %description devel
58 Header files for vcd libraries.
59
60 %description devel -l pl.UTF-8
61 Pliki nagłówkowe bibliotek vcd.
62
63 %package static
64 Summary:        Static vcd libraries
65 Summary(pl.UTF-8):      Statyczne biblioteki vcd
66 Group:          Development/Libraries
67 Requires:       %{name}-devel = %{version}-%{release}
68 Obsoletes:      vcdimager-cdio-static
69
70 %description static
71 Static vcd libraries.
72
73 %description static -l pl.UTF-8
74 Statyczne biblioteki vcd.
75
76 %prep
77 %setup -q
78 %patch0 -p1
79
80 cp -f libpopt.m4 acinclude.m4
81
82 %build
83 %{__libtoolize}
84 %{__aclocal}
85 %{__autoconf}
86 %{__autoheader}
87 %{__automake}
88 %configure \
89         --enable-maintainer-mode \
90         %{!?with_static_libs:--disable-static}
91 %{__make}
92
93 %install
94 rm -rf $RPM_BUILD_ROOT
95
96 %{__make} install \
97         DESTDIR=$RPM_BUILD_ROOT
98
99 %clean
100 rm -rf $RPM_BUILD_ROOT
101
102 %post
103 /sbin/ldconfig
104 [ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir %{_infodir} >/dev/null 2>&1
105
106 %postun
107 /sbin/ldconfig
108 [ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir %{_infodir} >/dev/null 2>&1
109
110 %files
111 %defattr(644,root,root,755)
112 %doc AUTHORS BUGS ChangeLog FAQ NEWS README THANKS TODO
113 %attr(755,root,root) %{_bindir}/*
114 %attr(755,root,root) %{_libdir}/lib*.so.*.*.*
115 %{_mandir}/man1/*.1*
116 %{_infodir}/*.info*
117
118 %files devel
119 %defattr(644,root,root,755)
120 %attr(755,root,root) %{_libdir}/lib*.so
121 %{_libdir}/lib*.la
122 %{_includedir}/libvcd
123 %{_pkgconfigdir}/*.pc
124
125 %if %{with static_libs}
126 %files static
127 %defattr(644,root,root,755)
128 %{_libdir}/lib*.a
129 %endif
This page took 0.080886 seconds and 4 git commands to generate.