summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Tushar Jagad <tushar.jagad@gmail.com>2015-12-13 08:35:27 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2015-12-13 08:35:27 +0700
commit358ceb9fd9da1e17b6d2481f51a3f20fc1f32cf1 (patch)
tree0bc34f755d58395ca79566506c569dfadab69584
parent1d2611eee2e97604abd62c8cac0d8c8e74ca588e (diff)
downloadslackbuilds-358ceb9fd9da1e17b6d2481f51a3f20fc1f32cf1.tar.gz
slackbuilds-358ceb9fd9da1e17b6d2481f51a3f20fc1f32cf1.tar.xz
libraries/trader: Added (Technical Analysis for traders).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r--libraries/trader/README6
-rw-r--r--libraries/trader/slack-desc19
-rw-r--r--libraries/trader/trader.SlackBuild102
-rw-r--r--libraries/trader/trader.info10
4 files changed, 137 insertions, 0 deletions
diff --git a/libraries/trader/README b/libraries/trader/README
new file mode 100644
index 0000000000..29a8075909
--- /dev/null
+++ b/libraries/trader/README
@@ -0,0 +1,6 @@
+The trader extension is a free open source stock library based
+on TA-Lib. It's dedicated to trading software developers
+requiring to perform technical analysis of financial market
+data. Alongside many indicators like ADX, MACD, RSI, Stochastic,
+TRIX the candlestick pattern recognition and several vector
+arithmetic and algebraic functions are present.
diff --git a/libraries/trader/slack-desc b/libraries/trader/slack-desc
new file mode 100644
index 0000000000..d8773d5c52
--- /dev/null
+++ b/libraries/trader/slack-desc
@@ -0,0 +1,19 @@
+# HOW TO EDIT THIS FILE:
+# The "handy ruler" below makes it easier to edit a package description.
+# Line up the first '|' above the ':' following the base package name, and
+# the '|' on the right side marks the last column you can put a character in.
+# You must make exactly 11 lines for the formatting to be correct. It's also
+# customary to leave one space after the ':' except on otherwise blank lines.
+
+ |-----handy-ruler------------------------------------------------------|
+trader: trader (Technical Analysis for traders)
+trader:
+trader: The trader extension is a free open source stock library based
+trader: on TA-Lib. It's dedicated to trading software developers
+trader: requiring to perform technical analysis of financial market
+trader: data. Alongside many indicators like ADX, MACD, RSI, Stochastic,
+trader: TRIX the candlestick pattern recognition and several vector
+trader: arithmetic and algebraic functions are present.
+trader:
+trader: Homepage: https://pecl.php.net/package/trader
+trader:
diff --git a/libraries/trader/trader.SlackBuild b/libraries/trader/trader.SlackBuild
new file mode 100644
index 0000000000..c99a2e7ff3
--- /dev/null
+++ b/libraries/trader/trader.SlackBuild
@@ -0,0 +1,102 @@
+#!/bin/sh
+
+# Slackware build script for "trader".
+
+# Copyright 2015 Tushar Jagad <tushar.jagad@gmail.com>
+# Copyright 2015 Marcel Saegebarth <marc@mos6581.de>
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions are
+# met:
+#
+# * Redistributions of source code must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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 COPYRIGHT
+# OWNER 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.
+
+PRGNAM=trader
+SRCNAM=trader
+VERSION=${VERSION:-0.4.0}
+BUILD=${BUILD:-1}
+TAG=${TAG:-_SBo}
+
+if [ -z "$ARCH" ]; then
+ case "$( uname -m )" in
+ i?86) ARCH=i486 ;;
+ arm*) ARCH=arm ;;
+ *) ARCH=$( uname -m ) ;;
+ esac
+fi
+
+CWD=$(pwd)
+TMP=${TMP:-/tmp/SBo}
+PKG=$TMP/package-$PRGNAM
+OUTPUT=${OUTPUT:-/tmp}
+
+if [ "$ARCH" = "i486" ]; then
+ SLKCFLAGS="-O2 -march=i486 -mtune=i686"
+ LIBDIRSUFFIX=""
+elif [ "$ARCH" = "i686" ]; then
+ SLKCFLAGS="-O2 -march=i686 -mtune=i686"
+ LIBDIRSUFFIX=""
+elif [ "$ARCH" = "x86_64" ]; then
+ SLKCFLAGS="-O2 -fPIC"
+ LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
+fi
+
+set -e
+
+rm -rf $PKG
+rm -rf $TMP/$SRCNAM-$VERSION
+mkdir -p $TMP $PKG $OUTPUT
+cd $TMP
+tar xvf $CWD/$SRCNAM-$VERSION.tgz
+cd $SRCNAM-$VERSION
+chown -R root:root .
+find -L . \
+ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
+ -o -perm 511 \) -exec chmod 755 {} \; -o \
+ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
+ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
+
+phpize
+CFLAGS="$SLKCFLAGS" \
+CXXFLAGS="$SLKCFLAGS" \
+./configure \
+ --prefix=/usr \
+ --libdir=/usr/lib${LIBDIRSUFFIX} \
+ --sysconfdir=/etc \
+ --localstatedir=/var \
+ --mandir=/usr/man \
+ --enable-static=no \
+ --build=$ARCH-slackware-linux
+
+make
+make install-modules INSTALL_ROOT=$PKG
+
+find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
+ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
+
+mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
+cp -a CREDITS LICENSE $PKG/usr/doc/$PRGNAM-$VERSION
+cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
+
+mkdir -p $PKG/install
+cat $CWD/slack-desc > $PKG/install/slack-desc
+
+cd $PKG
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
diff --git a/libraries/trader/trader.info b/libraries/trader/trader.info
new file mode 100644
index 0000000000..742809f8b4
--- /dev/null
+++ b/libraries/trader/trader.info
@@ -0,0 +1,10 @@
+PRGNAM="trader"
+VERSION="0.4.0"
+HOMEPAGE="https://pecl.php.net/package/trader/"
+DOWNLOAD="https://pecl.php.net/get/trader-0.4.0.tgz"
+MD5SUM="a784483719ad37b7e83c1fc597cb987a"
+DOWNLOAD_x86_64=""
+MD5SUM_x86_64=""
+REQUIRES=""
+MAINTAINER="Tushar Jagad"
+EMAIL="tushar.jagad@gmail.com"