mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-06 03:02:30 +01:00
16 lines
305 B
Bash
Executable File
16 lines
305 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -z "$JHBUILD_PREFIX" ]; then
|
|
echo "You must run this within a jhbuild shell."
|
|
exit 1
|
|
fi
|
|
|
|
if [ ! -f $JHBUILD_PREFIX/bin/python ]; then
|
|
echo "You must install python with jhbuild."
|
|
exit 1
|
|
fi
|
|
|
|
rm -rf HexChat.app
|
|
|
|
$JHBUILD_PREFIX/bin/python $HOME/.local/bin/gtk-mac-bundler hexchat.bundle
|