aboutsummaryrefslogtreecommitdiff
path: root/flow-native/src/debian
diff options
context:
space:
mode:
Diffstat (limited to 'flow-native/src/debian')
-rw-r--r--flow-native/src/debian/changelog6
-rw-r--r--flow-native/src/debian/compat1
-rw-r--r--flow-native/src/debian/control17
-rw-r--r--flow-native/src/debian/copyright36
-rwxr-xr-xflow-native/src/debian/rules21
5 files changed, 81 insertions, 0 deletions
diff --git a/flow-native/src/debian/changelog b/flow-native/src/debian/changelog
new file mode 100644
index 0000000..00bb566
--- /dev/null
+++ b/flow-native/src/debian/changelog
@@ -0,0 +1,6 @@
+flow (3.0.1) UNRELEASED; urgency=low
+
+ * Initial release.
+ * Fix termios initialization issue.
+
+ -- Jakob Odersky <jodersky@gmail.com> Sun, 11 Jan 2015 10:56:29 +0100
diff --git a/flow-native/src/debian/compat b/flow-native/src/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/flow-native/src/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/flow-native/src/debian/control b/flow-native/src/debian/control
new file mode 100644
index 0000000..f335e0e
--- /dev/null
+++ b/flow-native/src/debian/control
@@ -0,0 +1,17 @@
+Source: flow
+Maintainer: Jakob Odersky <jodersky@gmail.com>
+Section: java
+Priority: optional
+Build-Depends: debhelper (>= 9), java7-jdk | openjdk-7-jdk
+Standards-Version: 3.9.6
+Homepage: https://github.com/jodersky/flow
+Vcs-Git: git://github.com/jodersky/flow.git
+
+Package: libflow3-jni
+Architecture: any
+Section: java
+Priority: optional
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: Provides the native backend and JNI bindings for flow.
+ This package contains a native library to fully enable flow, a
+ serial communication library for Scala. \ No newline at end of file
diff --git a/flow-native/src/debian/copyright b/flow-native/src/debian/copyright
new file mode 100644
index 0000000..d26a00a
--- /dev/null
+++ b/flow-native/src/debian/copyright
@@ -0,0 +1,36 @@
+Format: http://dep.debian.net/deps/dep5
+Upstream-Name: flow
+Source: https://github.com/jodersky/flow
+
+Files: *
+Copyright: 2014 Jakob Odersky <jodersky@gmail.com>
+License: BSD-3-Clause
+
+Files: debian/*
+Copyright: 2014 Jakob Odersky <jodersky@gmail.com>
+License: BSD-3-Clause
+
+License: BSD-3-Clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ 1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ 3. Neither the name of the University nor the names of its contributors
+ may be used to endorse or promote products derived from this software
+ without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ SUCH DAMAGE.
diff --git a/flow-native/src/debian/rules b/flow-native/src/debian/rules
new file mode 100755
index 0000000..c062736
--- /dev/null
+++ b/flow-native/src/debian/rules
@@ -0,0 +1,21 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+ dh $@
+
+# override library install directory
+override_dh_auto_configure:
+ dh_auto_configure -- --libdir=/usr/lib/jni
+
+# used to suppress ldconfig warnings in preinst and postrm
+override_dh_makeshlibs:
+ dh_makeshlibs -X/usr/lib/jni