RPM spec files

トップ ページ
添付ファイル:
Eメールのメッセージ
+ (text/plain)
このメッセージを削除
このメッセージに返信
著者: Kevin Buettner
日付:  
題目: RPM spec files
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