diff options
Diffstat (limited to 'newapkbuild.in')
-rw-r--r-- | newapkbuild.in | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/newapkbuild.in b/newapkbuild.in index 7dbf615..c021db5 100644 --- a/newapkbuild.in +++ b/newapkbuild.in @@ -286,25 +286,25 @@ __EOF__ } usage() { - cat >&2 <<__EOF__ -$program $program_version - generate a new APKBUILD -Usage: $program [-cfh] [-d DESC] [-l LICENSE] [-n NAME] [-u URL] - PKGNAME[-PKGVER]|SRCURL -Options: - -n Set package name to NAME - -d Set package description (pkgdesc) to DESC - -l Set package license to LICENSE - -u Set package URL - -a Create autotools (use ./configure ...) - -C Create CMake pakckage (Assume cmake/ is there) - -p Create perl package (Assume Makefile.PL is there) - -y Create python package (Assume setup.py is there) - -s Use sourceforge source URL - -c Copy a sample init.d, conf.d, and install script to new directory - -f Force even if directory already exist - -h Show this help - -__EOF__ + cat >&2 <<-__EOF__ + $program $program_version - generate a new APKBUILD + Usage: $program [-cfh] [-d DESC] [-l LICENSE] [-n NAME] [-u URL] + PKGNAME[-PKGVER]|SRCURL + Options: + -n Set package name to NAME + -d Set package description (pkgdesc) to DESC + -l Set package license to LICENSE + -u Set package URL + -a Create autotools (use ./configure ...) + -C Create CMake pakckage (Assume cmake/ is there) + -p Create perl package (Assume Makefile.PL is there) + -y Create python package (Assume setup.py is there) + -s Use sourceforge source URL + -c Copy a sample init.d, conf.d, and install script to new directory + -f Force even if directory already exist + -h Show this help + + __EOF__ } while getopts "acd:fhl:n:pyu:s" opt; do |