aboutsummaryrefslogtreecommitdiff
path: root/flow-native/src/pkg/mkpkg
diff options
context:
space:
mode:
Diffstat (limited to 'flow-native/src/pkg/mkpkg')
-rwxr-xr-xflow-native/src/pkg/mkpkg20
1 files changed, 0 insertions, 20 deletions
diff --git a/flow-native/src/pkg/mkpkg b/flow-native/src/pkg/mkpkg
deleted file mode 100755
index c82d9cb..0000000
--- a/flow-native/src/pkg/mkpkg
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-#
-# This script produces a .pkg installable package on a mac.
-
-# Name of the package
-PACKAGE=flow3
-
-# Place to install libraries (should be on java.library.path)
-LIBDIR=/Library/Java/Extensions
-
-# Temporary directory to install libraries
-TEMPDIR=`pwd`/out
-
-mkdir ${TEMPDIR} && \
-cd .. && \
-./configure --libdir=${LIBDIR} && \
-make && \
-DESTDIR=${TEMPDIR} make install && \
-productbuild --root=pkg ${PACKAGE}.pkg
-