Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 16 Jun 1997 13:59:26 +0300
From:      Ruslan Shevchenko <rssh@cki.ipri.kiev.ua>
To:        "Brian N. Handy" <handy@sag.space.lockheed.com>
Cc:        ports@FreeBSD.ORG
Subject:   Re: PLIST question
Message-ID:  <33A51C95.6E66@cki.ipri.kiev.ua>
References:  <Pine.OSF.3.96.970615134106.8545E-100000@sag.space.lockheed.com>

next in thread | previous in thread | raw e-mail | index | archive | help
Brian N. Handy wrote:
> 
> Hi all,
> 
> I've got a new program I want to make a port of (MuPAD), and my first
> impression of it is that it's like emacs -- it creates almost exactly 3
> zillion files in a nice directory tree.
> 
> Is there an easy way to make an accurate PLIST of all this?  Anyone have
> an incantation that will help streamline this operation?
> 

1. Install it with prefix in you directory DIR,
  than 
  for i in DIR/* DIR/*/* DIR/*/*/*/ .....
  do
    echo $$i
  done  > PLIST.begin
 
  is what, that you need.

  than you can by sample perl script exclude
  directories, ... and so on.

2. Another way:
   (tar -cf - DIR/* | tar -tf - ) > PLIST.begin
 

> Thanks,
> 
> Brian



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?33A51C95.6E66>