]> git.pld-linux.org Git - packages/cdrdao.git/blob - cdrdao.spec
- opt patch (use $RPM_OPT_FLAGS, not -O20 to compile paranoia)
[packages/cdrdao.git] / cdrdao.spec
1 # NOTE:         
2 #       Currently this package does not contain X interface. This is due to
3 #       the fact, that it doesn't compile with current version of gtkmm. I
4 #       have asked author if he is going to update this program, but I've got
5 #       no answer yet.
6 Summary:        Tools for burning CDRs in Disk At Once mode
7 Summary(pl):    Narzêdzia do wypalania p³yt w trybie Disk At Once
8 Name:           cdrdao
9 Version:        1.1.3
10 Release:        1
11 Group:          Utilities/System
12 Group(pl):      Narzêdzia/System
13 License:        GPL
14 Source0:        http://www.ping.de/sites/daneb/%{name}-%{version}.src.tar.gz
15 Patch0:         %{name}-destdir.patch
16 Patch1:         %{name}-opt.patch
17 BuildRequires:  libstdc++-devel
18 BuildRequires:  libsigc++-devel
19 BuildRequires:  pccts-devel
20 # Required by frontend.
21 #BuildRequires: gtk+-devel
22 #BuildRequires: gtkmm-devel
23 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
24
25 %description
26 Cdrdao records audio and data CD-Rs in Disk At Once mode. This mode
27 gives much better control over contents of CD.
28
29 %description -l pl
30 Cdrdao zapisuje p³ytki audio i z danymi w trybie Disk At Once. W tym
31 trybie masz znacznie wiêksz± kontrolê nad zawarto¶ci± p³ytki.
32
33 %prep
34 %setup  -q
35 %patch0 -p1
36 %patch1 -p1
37
38 %build
39 #autoheader;autoconf;automake; 
40 (cd paranoia ; autoconf)
41 #CFLAGS="-I%{_prefix}/X11R6/includes"
42 %configure \
43         --with-pcctsbin=%{_bindir} \
44         --with-pcctsinc=%{_includedir}/pccts \
45         --x-includes=%{_prefix}/X11R6/includes
46 %{__make}
47
48 %install
49 rm -rf $RPM_BUILD_ROOT
50
51 %{__make} install \
52         DESTDIR=$RPM_BUILD_ROOT
53
54 gzip -9nf $RPM_BUILD_ROOT%{_mandir}/man*/* \
55         COPYING CREDITS README* Release*
56
57 %clean
58 rm -rf $RPM_BUILD_ROOT
59
60 %files
61 %defattr(644,root,root,755)
62 %{_mandir}/*/*
63 %attr(755,root,root) %{_bindir}/*
64 %doc *.gz
This page took 0.595243 seconds and 4 git commands to generate.