RPM spec files

Kevin Buettner kev@primenet.com
Wed, 29 Nov 2000 21:32:27 -0700


On Nov 29,  8:25pm, Wes Bateman wrote:

> Yeah, I guess that works...but doing that on an ethereal source gives me a
> 626 line output.  I was hoping for some magical trick that would give you
> an actual file list :)  I don't know of any way to do such a thing, but
> twould be slick :)

I'm not familiar with the sources in question.  Is there a configure
script?  Does it support the --prefix option?

If so, obtain fresh sources, cd to the source tree in question, and 
do something like this...

    mkdir /tmp/testdir
    ./configure --prefix=/tmp/testdir
    make
    make install
    find /tmp/testdir -print | perl -pe 's#^/tmp/testdir##'
    rm -rf /tmp/testdir

Kevin