1:: Name: packer
2:: Author: Plombo
3:: Frontend for borpak that emulates Senile Team's "packer" utility.
4:: Put this file in the same directory as the borpak executable.
5@echo off
6
7if (%1) == () goto USAGE
8if (%2) == () goto USAGE
9if not (%3) == () goto USAGE
10
11%0\..\borpak -b -d %2 %1
12goto END
13
14:USAGE
15echo Usage: %0 ^<packname^> ^<dirname^>
16goto END
17
18:END
19