Re: Put files in package

2007-05-04 Thread Michael Banck
Hi, On Wed, May 02, 2007 at 11:56:01AM -0300, Rodrigo Tavares wrote: > Today, i use a makefile with two lines : [...] I think your questions are more on-topic on the debian-mentors mailing list. thanks, Michael -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe".

Re: Put files in package

2007-05-02 Thread Kevin B. McCarty
Rodrigo Tavares wrote: > Today, i use a makefile with two lines : > > binary-indep: build install > mkdir -p debian/package/usr/share/doc/package > cp -a debian/opt debian/package/usr/share/doc/package > > Then in postinst I copy the files for opt directory. Why on Earth would you do that, inst

Re: Put files in package

2007-05-02 Thread Santiago Vila
Rodrigo Tavares wrote: > I would like put this files in /etc, so when run dpkg -L package, > the file is in etc. You failed to explain why you can't do this: rm -rf debian/package [...] mkdir -p debian/package/etc cp -p file debian/package/etc Or maybe you are (still?) joking, in which case you

Put files in package

2007-05-02 Thread Rodrigo Tavares
Hello, Today, i use a makefile with two lines : binary-indep: build install mkdir -p debian/package/usr/share/doc/package cp -a debian/opt debian/package/usr/share/doc/package Then in postinst I copy the files for opt directory. When I run the command : dpkg -L package /usr/share/doc/package