blob: 1d46d31e3ff8c6643d80f9223497d79f61f4618d (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
#!/bin/sh
VERSION=0.01
die() {
echo "error: $1"
exit 1
}
pbjtopkg()
{
pkg=$1
rm -rf "$pkgroot/$pkg"
mkdir "$pkgroot/$pkg"
cd "$pkgroot/$pkg"
jamfile="$jamdir/$1.pbj"
if [ ! -f "$jamfile" ] ; then
die "$jamfile is missing"
fi
# Match the pkgname to the .pbj filename.
# Provide values for other things macros won't be able to.
printf "+ pkgname $pkg\n+ pkgrel ${PKGREL:-1}\n+ pbjver $VERSION\n" \
| cat - "$jamfile" \
| awk -v packager="${PACKAGER:-Anonymous}" -f "$bindir/pbjparse.awk" \
> PKGBUILD
if [ $? -ne 0 ] ; then
echo "Failed to write $pkgroot/$pkg/PKGBUILD"
exit $?
fi
echo "Wrote $pkgroot/$pkg/PKGBUILD."
}
if [ -z "$1" ] ; then
die "Usage: $0 [package name]"
fi
if [ "$PBJROOT" ] ; then
cd "$PBJROOT"
fi
bindir="$(pwd)/bin"
if [ ! -d "$bindir" ] ; then
die "$bindir does not exist"
fi
PATH="$PATH:$bindir"
if [ -n "$PKGROOT" ] ; then
pkgroot="$PKGROOT"
else
pkgroot="$(pwd)/pkg"
fi
if [ ! -d "$pkgroot" ] ; then
die "$pkgroot does not exist"
fi
jamdir="$(pwd)/pbj"
if [ ! -d "$jamdir" ] ; then
die "$jamdir does not exist"
fi
export PATH="$PATH:$bindir/macros:$bindir/templ"
while [ $# -gt 0 ] ; do
pbjtopkg $1
shift
done
|