03-03-2007,07:55 PM
Well, then just create it.
Here's an example APPINFO.PBT:
Code:
#######################################################################
# PS2LINK v1.46 #
#######################################################################
SET "CMD" "$ARG1$"
SET "SRC_PATH" "$ARG2$/PS2LINK"
SET "DST_PATH" "$ARG3$/PS2LINK"
GOTO "$CMD$"
RETURN "-1"
:QUERY
# Change this information to describe the application.
SET "APP_TITLE" "PS2LINK"
SET "APP_VERSION" "v1.46"
SET "APP_AUTHOR" "ps2dev.org"
SET "APP_DESC" "PS2link allows you to load and execute applications using your PS2 network adapter."
SET "APP_MEDIAS" ""
RETURN "0"
:INSTALL
# Change this to create the directories and copy the files needed for the application.
MKDIR "$DST_PATH$"
COPY "$SRC_PATH$/PS2LINK.ELF" "$DST_PATH$/PS2LINK.ELF"
COPY "$SRC_PATH$/IPCONFIG.DAT" "$DST_PATH$/IPCONFIG.DAT"
COPY "$SRC_PATH$/APPINFO.PBT" "$DST_PATH$/APPINFO.PBT"
RETURN "0"
:REMOVE
# Change this to remove all files or directories copied during the installation.
RM "$SRC_PATH$/PS2LINK.ELF"
RM "$SRC_PATH$/IPCONFIG.DAT"
RM "$SRC_PATH$/APPINFO.PBT"
RMDIR "$ARG2$/PS2LINK"
RETURN "0"
:RUN
RUNAPP "$SRC_PATH$/PS2LINK.ELF"
RETURN "0"
best regards Jones23