so basically I'm having trouble making my project into a .pnd file
I've tried a bunch of times.
I can run the compiled program on the Pandora just fine, it just does not run once i add it to a PND
can someone make me an example PXML my executable file is named SyobonAction
i also tried using a script to launch it but it doesn't seem to work either
Edit: My PND structure
/data <data folder required by my ported app
icon.png <Icon
PXML.xml <PXML
syobon.sh <startup script
SyobonAction <Executable
PXML
syobon.sh (i've also tried executing the SyobonAction Executable directly in the PXML)
I've tried a bunch of times.
I can run the compiled program on the Pandora just fine, it just does not run once i add it to a PND
can someone make me an example PXML my executable file is named SyobonAction
i also tried using a script to launch it but it doesn't seem to work either
Edit: My PND structure
/data <data folder required by my ported app
icon.png <Icon
PXML.xml <PXML
syobon.sh <startup script
SyobonAction <Executable
PXML
Code:
<?xml version="1.0" encoding="UTF-8"?>
<PXML xmlns="http://openpandora.org/namespaces/PXML">
<package id="syobonaction">
<version major="1" minor="0" release="1" build="2"/>
<author name="DannyBoyJaros" website="http://www.openpandora.org"/>
<titles>
<title lang="en_US">Syobon Action</title>
</titles>
<descriptions>
<description lang="en_US">Challenging version of Mario in which you play as a cat and there are crazy traps all around you.</description>
</descriptions>
<icon src="icon.png"/>
</package>
<application id="syobonaction">
<exec command="run.sh" x11="req"/>
<version major="1" minor="0" release="1" build="2"/>
<author name="DannyBoyJaros" website="http://www.openpandora.org"/>
<titles>
<title lang="en_US">Syobon Action</title>
</titles>
<title lang="en_US">Syobon Action</title> <!--Extra block for compatibility with OS versions before HF6-->
<descriptions>
<description lang="en_US">Challenging version of Mario in which you play as a cat and there are crazy traps all around you.</description>
</descriptions>
<description lang="en_US">Challenging version of Mario in which you play as a cat and there are crazy traps all around you.</description> <!--Extra block for compatibility with OS versions before HF6-->
<icon src="icon.png"/>
<licenses>
<license name="I Do What I Want" url="http://www.google.com" sourcecodeurl="http://www.google.com"/>
</licenses>
<previewpics>
<pic src="icon.png"/>
</previewpics>
<info name="Syobon-Readme" type="text/html" src="readme.txt"/>
<categories>
<category name="Game">
<subcategory name="Arcade"/>
</category>
</categories>
</application>
</PXML>
syobon.sh (i've also tried executing the SyobonAction Executable directly in the PXML)
Code:
#!/bin/bash
./SyobonAction
Last edited by a moderator: