From 02eef09d8992d4c91930b814854da5d799c9874f Mon Sep 17 00:00:00 2001 From: Eric Merritt Date: Wed, 11 Aug 2010 07:33:05 +0800 Subject: [PATCH] add getopt.app so getopt fits into releases --- ebin/getopt.app | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 ebin/getopt.app diff --git a/ebin/getopt.app b/ebin/getopt.app new file mode 100644 index 0000000..085ae04 --- /dev/null +++ b/ebin/getopt.app @@ -0,0 +1,7 @@ +%% -*- mode: Erlang; fill-column: 75; comment-column: 50; -*- + +{application, getopt, + [{description, "Options parser for Erlang"}, + {vsn, "0.1"}, + {modules, [getopt]}, + {applications, [kernel, stdlib]}]}.