libuv was only ever used for the tcp server for almost 4 years. Since the non-libuv implementation of that is working now, it can be dropped entirely without sacrificing functionality.
33 lines
1.2 KiB
Bash
Executable file
33 lines
1.2 KiB
Bash
Executable file
#!/bin/sh -eu
|
|
#
|
|
# Script to create a OSX .pkg file to install Rizin
|
|
|
|
VERSION=$(python3 ./sys/version.py)
|
|
RIZINDIR=$(pwd)
|
|
RIZININSTALL=/tmp/rizin-install
|
|
OSXPKGDIR=/tmp/osxpkgtmp
|
|
|
|
rm -rf buildtmp
|
|
mkdir buildtmp
|
|
meson buildtmp --buildtype=release -Denable_tests=false -Dlocal=disabled --prefix=/usr/local
|
|
rm -rf "${RIZININSTALL}"
|
|
DESTDIR="${RIZININSTALL}" ninja -C buildtmp install
|
|
rm -rf buildtmp
|
|
|
|
rm -rf "${OSXPKGDIR}"
|
|
mkdir "${OSXPKGDIR}"
|
|
cp -rv "${RIZINDIR}/dist/osx/rizin.unpkg/" "${OSXPKGDIR}/"
|
|
|
|
cd "${RIZININSTALL}" && find . | cpio -o --format odc | gzip -c > "${OSXPKGDIR}/Payload"
|
|
mkbom "${RIZININSTALL}" "${OSXPKGDIR}/Bom"
|
|
pkgutil --flatten "${OSXPKGDIR}" "${RIZINDIR}/dist/osx/rizin.pkg"
|
|
|
|
convert -size 620x418 xc:none -background none /tmp/bg.png || { echo convert failed, is imagemagick installed?; exit 1; }
|
|
composite -geometry +30+230 -background none \( "${RIZINDIR}/doc/img/rizin.svg" -resize 25% \) /tmp/bg.png -colorspace sRGB "${RIZINDIR}/dist/osx/Resources/rizin-logo.png"
|
|
|
|
cd "${RIZINDIR}/dist/osx" && productbuild --resources Resources --distribution Distribution "rizin-${VERSION}.pkg"
|
|
mv "${RIZINDIR}/dist/osx/rizin-${VERSION}.pkg" "${RIZINDIR}/rizin-${VERSION}.pkg"
|
|
|
|
rm "${RIZINDIR}/dist/osx/rizin.pkg"
|
|
rm -rf "${OSXPKGDIR}"
|
|
rm -rf "${RIZININSTALL}"
|