radare2/sys/osx-pkg.sh

33 lines
666 B
Bash
Raw Normal View History

2014-09-18 20:52:32 +08:00
#!/bin/sh
# based on
# http://blog.coolaj86.com/articles/how-to-unpackage-and-repackage-pkg-osx.html
# to uninstall:
# sudo pkgutil --forget org.radare.radare2
SRC=/tmp/r2osx
2015-06-17 10:59:01 +08:00
DST="$(pwd)/sys/osx-pkg/radare2.unpkg"
2016-01-20 11:27:08 +08:00
VERSION=0.10.0
2014-09-18 20:52:32 +08:00
rm -rf "${SRC}"
2014-09-18 20:52:32 +08:00
make mrproper
./configure --prefix=/usr || exit 1
make -j4 || exit 1
2014-09-18 20:52:32 +08:00
# TODO: run sys/install.sh
make install PREFIX=/usr DESTDIR=${SRC} || exit 1
if [ -d "${SRC}" ]; then
(
cd ${SRC} && \
2015-06-17 10:59:01 +08:00
find . | cpio -o --format odc | gzip -c > "${DST}/Payload"
)
mkbom ${SRC} "${DST}/Bom"
2014-09-18 20:52:32 +08:00
# Repackage
2014-09-18 20:52:32 +08:00
pkgutil --flatten "${DST}" "${DST}/../radare2-${VERSION}.pkg"
else
echo "Failed install. DESTDIR is empty"
exit 1
fi