brokenman wrote:making them would be more work though
Since this is a simple drag 'n' drop extraction utility i don't think the creation of files is an issue. Leave that for another tool.
ok sounds fun
Would you like to help me here is a great start since you are the xzm expert It would need your approval
to be compatible with Porteus module standards and your help fanthom and Ahau have done a lot with xzm too
I still think in packages
Everything I will say below is using an official install of slackware 14 !
unzipper_dragNdrop slackware 14 only recompiled with a different GTK
http://bigbass-porteus.googlecode.com/f ... 8_PORT.tgz
its got a lot easier since the last time I tried this on Slackware 12.1 now you don't have to recompile the kernel that's too cool
install this to get the backend support I compiled it on slackware 14
http://bigbass-porteus.googlecode.com/f ... -1_SBo.tgz
Code: Select all
#-------------------------------------------
# mount porteus module on slackware 14
#-------------------------------------------
mkdir -p /mnt/base-porteus-module
mount /porteus-1.2/base/008-firefox.xzm /mnt/base-porteus-module -t squashfs -o loop
ls -1 /mnt/base-porteus-module
xdg-open /mnt/base-porteus-module
of course this is not the official way its just where you would need to run Porteus scripts to do it correctly
here its just the most basic idea without any specialized scripts yet I am using a clean 100% slackware install
so I don't have anything ported over
Code: Select all
#-------------------------------------------
# make a simple folder a porteus type module on slackware 14
#-------------------------------------------
mkdir -p /mnt/xzm-porteus-module
mksquashfs /etc /tmp/etc.xzm
mount /tmp/etc.xzm /mnt/xzm-porteus-module -t squashfs -o loop
ls -1 /mnt/xzm-porteus-module
xdg-open /mnt/xzm-porteus-module
Joe