adjustments to Makefile...

For the Compleat Fan
Locked
tom
Posts: 168
Joined: Wed Jul 14, 2004 10:32 pm

adjustments to Makefile...

Post by tom »

Hi Lutz, guys,

I'm trying to make a newlisp package for Arch Linux. So far, I've
been unsuccessful. the "build" section of the script that generates
the package has this line in it:

Code: Select all

make DESTDIR=$startdir/pkg install
So, how much trouble would it be to make the makefile support
"DESTDIR?"

Thanks!

Lutz
Posts: 5289
Joined: Thu Sep 26, 2002 4:45 pm
Location: Pasadena, California
Contact:

Post by Lutz »

I can include the line:

Code: Select all

arch-package:
    make -f makefile_arch_package
in newlisp-x.x.x./Makefile and you deliver the 'makefile_arch_package where you can define DESTDIR and can put everything else you need to make the package. In a similar way it was done for the MAc OSX package.

The makefile_arch_package will then be included in the next release.

Lutz

tom
Posts: 168
Joined: Wed Jul 14, 2004 10:32 pm

Post by tom »

Thanks Lutz!

Your extra work won't be needed. Somebody at the Arch forums told me what I was doing wrong.

if anybody's interested, there's an Arch Linux package of newlisp 8.6.0 at

http://perpetualnewbie.info/archlinux/p ... pkg.tar.gz

(btw, sorry for sticking these posts in the wrong forum)

Locked