summaryrefslogtreecommitdiff
path: root/aur
diff options
context:
space:
mode:
authorYuval Adam <yuval@y3xz.com>2016-02-02 00:11:02 +0200
committerYuval Adam <yuval@y3xz.com>2016-02-02 00:11:02 +0200
commitcb186e8047b7b6661566e09ffac4e2ec886af616 (patch)
tree3c2293751939069d615d657037e98fd6138f823c /aur
parentf95a5e1baa2a7990fde612085c37a4a0e39f31ce (diff)
parent620cb405c85c02f6ee561b5296f086dce5b52ad3 (diff)
Add 'aur/itpp/' from commit '620cb405c85c02f6ee561b5296f086dce5b52ad3'
git-subtree-dir: aur/itpp git-subtree-mainline: f95a5e1baa2a7990fde612085c37a4a0e39f31ce git-subtree-split: 620cb405c85c02f6ee561b5296f086dce5b52ad3
Diffstat (limited to 'aur')
-rw-r--r--aur/itpp/.SRCINFO18
-rw-r--r--aur/itpp/PKGBUILD29
2 files changed, 47 insertions, 0 deletions
diff --git a/aur/itpp/.SRCINFO b/aur/itpp/.SRCINFO
new file mode 100644
index 0000000..1a84ba9
--- /dev/null
+++ b/aur/itpp/.SRCINFO
@@ -0,0 +1,18 @@
+pkgbase = itpp
+ pkgdesc = C++ library of mathematical, signal processing and communication routines
+ pkgver = 4.3.1
+ pkgrel = 1
+ url = http://itpp.sourceforge.net/
+ arch = i686
+ arch = x86_64
+ license = GPL
+ makedepends = cmake
+ depends = blas
+ depends = lapack
+ depends = fftw
+ depends = perl
+ source = http://downloads.sourceforge.net/project/itpp/itpp/4.3.1/itpp-4.3.1.tar.bz2
+ md5sums = 94f3dac6df2bb829819d0aa99b501933
+
+pkgname = itpp
+
diff --git a/aur/itpp/PKGBUILD b/aur/itpp/PKGBUILD
new file mode 100644
index 0000000..1115660
--- /dev/null
+++ b/aur/itpp/PKGBUILD
@@ -0,0 +1,29 @@
+# Maintainer: Yuval Adam <yuval at y3xz dot com> PGP-Key: 271386AA2EB7672F
+# Contributor: Maxime de Roucy <maxime.deroucy@gmail.com>
+# Contributor: Joel Schaerer <joel.schaerer@laposte.net>
+
+pkgname=itpp
+pkgver=4.3.1
+pkgrel=1
+pkgdesc="C++ library of mathematical, signal processing and communication routines"
+arch=('i686' 'x86_64')
+url="http://itpp.sourceforge.net/"
+license=('GPL')
+depends=('blas' 'lapack' 'fftw' 'perl')
+makedepends=('cmake')
+source=("http://downloads.sourceforge.net/project/itpp/itpp/${pkgver}/itpp-${pkgver}.tar.bz2")
+md5sums=('94f3dac6df2bb829819d0aa99b501933')
+
+
+build() {
+ cd itpp-$pkgver
+ mkdir -p build
+ cd build
+ cmake .. -DCMAKE_INSTALL_PREFIX=/usr
+ make
+}
+
+package() {
+ cd "itpp-$pkgver/build"
+ make DESTDIR="$pkgdir" install
+}