Author |
Message |
LazY Puppy

Joined: 21 Nov 2014 Posts: 2007 Location: Germany
|
Posted: Wed 31 Dec 2014, 14:23 Post subject:
|
|
Quote: | You were supposed to cd into folder then do command.... |
Thanks for the information.
Will try this later.
Quote: | Barry Kauler and 01micko mentioned (in his blog) about half a year ago
that there were problems with libraries in i386-linux-gnu.
Barry K makes a link called i386-linux-gnu , I believe, in some of his
distros. I guess that when they are downloaded , Ubuntu libraries will
be sent to the link's destination ---> /usr/lib/
_________________________________________________
When I use alien2puppy I move all libraries to /usr/lib/ when
the program stops to let the user find the icons.
Audacity doesn't seem to mind. |
I have Audacity 2.0.0 and 2.0.5 (2.0.6beta) running from SFS without any i386-linux-gnu directory or symbolic link inside the SFS. Works well in my Precise based L.A.S.S.I.E. - should do also in a default Precise.
_________________ RSH
"you only wanted to work your Puppies in German", "you are a separatist in that you want Germany to secede from Europe" (musher0)
No, but I gave my old drum kit away for free to a music store collecting instruments for refugees! 
|
Back to top
|
|
 |
don570

Joined: 10 Mar 2010 Posts: 5524 Location: Ontario
|
Posted: Tue 13 Jan 2015, 20:52 Post subject:
|
|
I made a 64 bit version of audacity this time...
Explained HERE
___________________________________
|
Back to top
|
|
 |
watchdog
Joined: 28 Sep 2012 Posts: 2022 Location: Italy
|
Posted: Fri 19 May 2017, 13:55 Post subject:
|
|
I have tried to build a sfs of qt5 5.6.1 with webkit from slackware's reps with alien2puppy in slacko64 700 beta3: it fails line 127:
Code: | # ./alien2puppy -s qt5-with_webkit-5.6.1
Please wait a moment while qt5-with_webkit-5.6.1 is populated
./alien2puppy: line 127: .: at-spi2-atk-2doinst.sh: file not found |
Perhaps does this script need some update?
|
Back to top
|
|
 |
don570

Joined: 10 Mar 2010 Posts: 5524 Location: Ontario
|
Posted: Sat 20 May 2017, 14:54 Post subject:
|
|
Check if there's enough disk space to do the un-archiving operations.
Maybe three times more space than the final package will be.
_________________________________________________
|
Back to top
|
|
 |
watchdog
Joined: 28 Sep 2012 Posts: 2022 Location: Italy
|
Posted: Sun 21 May 2017, 00:31 Post subject:
|
|
I changed near line 127 from:
Code: | rm -f $DIR/install/slack-desc
cd $DIR/install
for i in `ls`; do
. $i #exec doinst
done
cd ../
cd ../
echo `pwd`
rm -rf $DIR/install #remove doinst.sh dir |
to:
Code: | rm -f $DIR/install/slack-desc
cd $DIR/install
for i in `ls`; do
chmod +x $i
./$i #exec doinst
done
cd ../
cd ../
echo `pwd`
rm -rf $DIR/install #remove doinst.sh dir |
It works now for me but I'm not a coder and so my change must be reviewed.
|
Back to top
|
|
 |
don570

Joined: 10 Mar 2010 Posts: 5524 Location: Ontario
|
Posted: Tue 23 May 2017, 11:54 Post subject:
|
|
It's easy to test with simple packages like nano.
I'll do that and report back.
___________________________________________
|
Back to top
|
|
 |
|