http://bugzilla.rpmfusion.org/show_bug.cgi?id=303
--- Comment #11 from Andrea Musuruane <musuruan(a)gmail.com> 2009-01-06 11:04:26 ---
(In reply to comment #9)
Ok, for the man page I didn't set that. In the install script
that is called by
the makefile, it is set there. I have no idea how to modify that in the spec
file.
I have also found that when I call "make install", it just points to the
install.sh script only and nothing else. I'll use that instead also because in
the readme it says that I can list the variables for the install directories.
"Make install" will only use PREFIX.
Should I use the default /usr/local or /usr for prefix? I have read that it is
better to install in the /usr directory but I have also read that some programs
work better from their defaults.
First, the default prefix you must use is the value of the macro %{_prefix}.
Therefore always use this macro. For the record, the value of this macro is
/usr.
Then, in the README file, I found that you can use the following options when
calling make:
PREFIX=path == install/uninstall prefix (default: /usr/local/)
SHAREDIR=path == path to install shared data (default:
PREFIX/share/mupen64
plus/)
BINDIR=path == path to install mupen64plus binary (default: PREFIX/bin/)
LIBDIR=path == path to install plugin libs (default: SHAREDIR/plugins/)
MANDIR=path == path to install manual files (default: PREFIX/man/man1/)
Therefore, use something like:
make install PREFIX=%{buildroot}%{_prefix} MANDIR=%{buildroot}%{_mandir}
LIBDIR=...
I hope this answer your question.
--
Configure bugmail:
http://bugzilla.rpmfusion.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
You are the assignee for the bug.