haiku/build/scripts/build_haiku_repository
Ingo Weinhold 12c19e6362 Move creating the Haiku repo info to jam
* PreprocessPackageInfo rule: Pull out new rule
PreprocessPackageOrRepositoryInfo which does the sed substituation and
optionally the filtering through the C preprocessor.
* HaikuRepository rule: Generate the repository info file (from the
given template). No longer do that in the build_haiku_repository
script.
2014-01-19 00:49:10 +01:00

48 lines
1.1 KiB
Bash
Executable File

#!/bin/sh
#
# Usage: build_haiku_repository <initScript> <repositoryDir> <repoInfo>
# <packages> ...
set -o errexit
if [ $# -le 2 ]; then
echo "$0: Missing parameters!" >&2
exit 1
fi
. $1
shift
repositoryDir="$1"
repoInfo="$2"
shift 2
# the remaining arguments are the packages
# this adds the build library dir to LD_LIBRARY_PATH
eval "$addBuildCompatibilityLibDir"
# create a clean repository directory
rm -rf "$repositoryDir"
mkdir "$repositoryDir"
packageDir="$repositoryDir/packages"
mkdir "$packageDir"
# Get the canonical names for the packages and copy them to the package
# directory.
for packageFile in "$@"; do
fileName=`"$package" info -f "%fileName%" "$packageFile"`
cp "$packageFile" "$packageDir/$fileName"
done
# build the repository file
cp "$repoInfo" "$repositoryDir/repo.info"
"$packageRepo" create -C "$repositoryDir" "$repositoryDir/repo.info" \
"$packageDir"/*.hpkg
# create the checksum file
$sha256 "$repositoryDir/repo" \
| $sedExtendedRegex 's,([^[:space:]]*).*,\1,' > "$repositoryDir/repo.sha256"
# The sed part is only necessary for sha256sum, but it doesn't harm for
# sha256 either.