How to make a .pet file in FP95? [SOLVED]

Moderator: Forum moderators

Post Reply
User avatar
Jasper
Posts: 1589
Joined: Wed Sep 07, 2022 1:20 pm
Has thanked: 674 times
Been thanked: 357 times

How to make a .pet file in FP95? [SOLVED]

Post by Jasper »

Hi all

I am using FP95 and trying to create a PET file for an application that I am building.

The application can be configured using Waf and builds/installs fine.

My question is how do a create an Install Directory in order to create a Pet file to share with others?

Last edited by bigpup on Thu Feb 22, 2024 6:35 pm, edited 2 times in total.
Reason: corrected subject to better state what it is about.
User avatar
Keef
Posts: 249
Joined: Tue Dec 03, 2019 8:05 pm
Has thanked: 3 times
Been thanked: 66 times

Re: Python - Waf

Post by Keef »

Does this not work?

Code: Select all

make DESTDIR=<PATHtoDIR> install 

Oh hang on, it's Python. Try hitting it with a hammer.

This might work:

Code: Select all

./waf install --destdir=/tmp/package

Found that here: https://stackoverflow.com/questions/101 ... virtualenv

Still might need the hammer though.

User avatar
Jasper
Posts: 1589
Joined: Wed Sep 07, 2022 1:20 pm
Has thanked: 674 times
Been thanked: 357 times

Re: How to make a .pet file of FP95?

Post by Jasper »

Image

@Keef

Thanks that did the trick :thumbup2:

I did try

make install DESTDIR='/tmp/somedestdir'

which did not work

Post Reply

Return to “Compiling”