diff options
author | Dubiousjim <dubiousjim@gmail.com> | 2013-07-05 00:21:13 -0400 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-07-08 14:49:36 +0000 |
commit | 811a215018b84a14218c0184234e6af5f56d10e4 (patch) | |
tree | 5e9683cc330832c94994dc4e6abaed33b670ac42 /newapkbuild.in | |
parent | e1339a9b7754ad1dd1c01b3cdf87ea340c58b461 (diff) | |
download | abuild-811a215018b84a14218c0184234e6af5f56d10e4.tar.gz abuild-811a215018b84a14218c0184234e6af5f56d10e4.tar.bz2 abuild-811a215018b84a14218c0184234e6af5f56d10e4.tar.xz abuild-811a215018b84a14218c0184234e6af5f56d10e4.zip |
various: tweak opening comments, whitespace
Also remove incomplete efforts at listing "Depends on: ..."
Diffstat (limited to 'newapkbuild.in')
-rwxr-xr-x | newapkbuild.in | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/newapkbuild.in b/newapkbuild.in index 0a0d433..1a41ae9 100755 --- a/newapkbuild.in +++ b/newapkbuild.in @@ -1,12 +1,10 @@ #!/bin/sh # -# Script to generate a new APKBUILD +# newapkbuild - generate a new APKBUILD # Copyright (c) 2009 Natanael Copa <natanael.copa@gmail.com> # # Distributed under GPL-2 # -# Depends on: busybox utilities, fakeroot, -# version=@VERSION@ sysconfdir=@sysconfdir@ @@ -297,7 +295,7 @@ while getopts "acd:fhl:n:pyu:s" opt; do done shift $(( $OPTIND - 1 )) -while [ $# -gt 0 ]; do +while [ $# -gt 0 ]; do newaport $1 || exit 1 shift done |