mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 21:58:41 +02:00
--HG-- extra : rebase_source : 3a6917e97cdeb2153425c96e06b1e5f85d1782f0 extra : source : 911b4b0fb6835fc7d0caaea5d64a590563ca3104
46 lines
1.5 KiB
Bash
Executable file
46 lines
1.5 KiB
Bash
Executable file
#!/bin/bash
|
|
set -x -e -v
|
|
|
|
# This script is for building libdmg-hfsplus to get the `dmg` and `hfsplus`
|
|
# tools for producing DMG archives on Linux.
|
|
|
|
WORKSPACE=$HOME/workspace
|
|
STAGE=$WORKSPACE/dmg
|
|
UPLOAD_DIR=$HOME/artifacts
|
|
|
|
# There's no single well-maintained fork of libdmg-hfsplus, so we forked
|
|
# https://github.com/andreas56/libdmg-hfsplus/ to get a specific version and
|
|
# backport some patches.
|
|
: LIBDMG_REPOSITORY ${LIBDMG_REPOSITORY:=https://github.com/mozilla/libdmg-hfsplus}
|
|
# The `mozilla` branch contains our fork.
|
|
: LIBDMG_REV ${LIBDMG_REV:=2ee327795680101d36f9700bd0fb618362237718}
|
|
|
|
mkdir -p $UPLOAD_DIR $STAGE
|
|
|
|
cd $WORKSPACE
|
|
git clone --no-checkout $LIBDMG_REPOSITORY libdmg-hfsplus
|
|
cd libdmg-hfsplus
|
|
git checkout $LIBDMG_REV
|
|
|
|
# Make a source archive
|
|
git archive --prefix=libdmg-hfsplus/ ${LIBDMG_REV} | xz > $UPLOAD_DIR/libdmg-hfsplus.tar.xz
|
|
cmake -DOPENSSL_USE_STATIC_LIBS=1 .
|
|
make -j$(getconf _NPROCESSORS_ONLN)
|
|
|
|
# We only need the dmg and hfsplus tools.
|
|
strip dmg/dmg hfs/hfsplus
|
|
cp dmg/dmg hfs/hfsplus $STAGE
|
|
|
|
# duplicate the functionality of taskcluster-lib-urls, but in bash..
|
|
if [ "$TASKCLUSTER_ROOT_URL" = "https://taskcluster.net" ]; then
|
|
queue_base='https://queue.taskcluster.net/v1'
|
|
else
|
|
queue_base="$TASKCLUSTER_ROOT_URL/api/queue/v1"
|
|
fi
|
|
|
|
cat >$STAGE/README<<EOF
|
|
Built from ${LIBDMG_REPOSITORY} rev `git rev-parse ${LIBDMG_REV}`.
|
|
Source is available as a taskcluster artifact:
|
|
$queue_base/task/$TASK_ID/artifacts/public/libdmg-hfsplus.tar.xz
|
|
EOF
|
|
tar cf - -C $WORKSPACE `basename $STAGE` | xz > $UPLOAD_DIR/dmg.tar.xz
|