blob: c4f3ee7a938aa864bcac15e743e674fdd82f3314 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#Maintainer max_meyer
pkgname=shflags
pkgver=1.0.3
pkgrel=1
pkgdesc="Shell Flags (shFlags) is a library written to greatly simplify the handling of command-line flags"
arch=(any)
url="http://code.google.com/p/shflags/"
license=('LGPL')
depends=(sh)
provides=(shflags)
optdepends=(bash zsh dash ksh)
options=(zipman)
source=(http://shflags.googlecode.com/files/$pkgname-$pkgver.tgz{,.sig})
md5sums=('b4d7133696ec05b71b27d8df5e278f0f'
'SKIP')
package() {
src="$srcdir/$pkgname-$pkgver/src/"
dst="$pkgdir/usr/share/lib/shflags"
mkdir -p "$dst"
if [ -f "$src/shflags" ]; then
cp "$src/shflags" "$dst/shflags.sh"
else
msg "Warning shflags not found"
exit 1
fi
}
# vim:set ts=2 sw=2 et:
|