aboutsummaryrefslogtreecommitdiff
path: root/flow-native/pkg
diff options
context:
space:
mode:
authorJakob Odersky <jodersky@gmail.com>2015-12-08 21:44:31 -0800
committerJakob Odersky <jodersky@gmail.com>2015-12-08 21:44:31 -0800
commiteab2e148c7605ca0fd836bbe9230734895cce7d0 (patch)
treed7b2a00c2890830fd60a3ba811141ceb48a5d650 /flow-native/pkg
parent230e840e09eda41f95bb813ff666fc58c663c095 (diff)
downloadakka-serial-eab2e148c7605ca0fd836bbe9230734895cce7d0.tar.gz
akka-serial-eab2e148c7605ca0fd836bbe9230734895cce7d0.tar.bz2
akka-serial-eab2e148c7605ca0fd836bbe9230734895cce7d0.zip
Use sbt-jni plugin
Diffstat (limited to 'flow-native/pkg')
-rwxr-xr-xflow-native/pkg/mkpkg20
1 files changed, 0 insertions, 20 deletions
diff --git a/flow-native/pkg/mkpkg b/flow-native/pkg/mkpkg
deleted file mode 100755
index c82d9cb..0000000
--- a/flow-native/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
-