Unfortunately no one can be told what fun_plug is - you have to see it for yourself.
You are not logged in.
Hi All,
Thanks for all the interesting topics in the forum. I have tried a few things related to compiling packages for ffp 0.7 but haven't had any luck. Can someone provide a short tutorial on how to do this on a DNS-325?
Thanks!
tniet
Offline
This was requested several times, also by me, I also tried it but had no success unless I managed to compile for 0.5 successfully.
So +1
Offline
This post by Mijelfz will helps you guys: http://dns323.kood.org/forum/viewtopic. … 766#p45766
ionice -c 3 nice screen
mkdir -p packagename/dest/install
echo "description" >packagename/dest/install/DESCR
echo "url" >packagename/dest/install/HOMEPAGE
cd packagename
wget package-url
tar xf package
cd package
./configure --prefix=/ffp
make
DESTDIR=/full/path/to/packagename/dest make install-strip (or ~ install/strip or ~ install)
cd ../dest
PKGDIR=/full/path/to/packagename makepkg package version revision
But you will have to customize and edit config files. You will also have to compile and install dependencies before compiling your package in most of cases...
Last edited by R0b1n (2012-03-06 14:18:39)
Offline