On Fri, 2008-08-01 at 18:38 +0100, Dermot McCluskey wrote:
> cd $RPM_BUILD_ROOT/%{_libdir}/python2.4/site-packages
> rm -f *
I'd suggest listing the file names here instead of a *
in case new files are added or files gone in future
releases. For the same reason, I suggest rm instead
of rm -f:
rm _gv.so gv.py
> ln -s ../../graphviz/python/libgv_python.so _gv.so
> ln -s ../../graphviz/python/gv.py gv.py
> cd $RPM_BUILD_ROOT/%{_libdir}/tcl8.4
> rm -f *
same here
> ln -s ../graphviz/tcl graphviz
> cd
> $RPM_BUILD_ROOT/%{_prefix}/perl5/vendor_perl/5.8.4/sun4-solaris-64int
> rm -f *
same here
> ln -s ../../../../lib/graphviz/perl/gv.pm gv.pm
> ln -s ../../../../lib/graphviz/perl/libgv_perl.so gv.so
Laca