summaryrefslogtreecommitdiff
path: root/community/torch
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2012-02-22 17:06:20 +0100
committerMichał Masłowski <mtjm@mtjm.eu>2012-02-22 17:06:20 +0100
commit47d70348352503e92ba694a6a683f629eaa18215 (patch)
tree7fb6f5ec75596b795dee52cfa35e3ef00a047cfb /community/torch
parentc0bcbcf4015ba2388cb0f0bd418e5242f9613b43 (diff)
parent1f55cedf5ea357497d2a98eb2be78d8dab4a9665 (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community-testing/hostapd/PKGBUILD community/discid/PKGBUILD community/dumb/PKGBUILD community/dynamite/PKGBUILD community/echat/PKGBUILD community/fbdump/PKGBUILD community/fldiff/PKGBUILD community/flightgear/PKGBUILD community/fonteditfs/PKGBUILD community/freehdl/PKGBUILD community/unclutter/PKGBUILD community/unpaper/PKGBUILD community/wmii/PKGBUILD community/xkeycaps/PKGBUILD community/xl2tpd/PKGBUILD community/xmmsctrl/PKGBUILD extra/gnutls/PKGBUILD extra/inkscape/PKGBUILD extra/ntp/PKGBUILD extra/transmission/PKGBUILD multilib/lib32-libpng/PKGBUILD testing/libreoffice/PKGBUILD
Diffstat (limited to 'community/torch')
-rw-r--r--community/torch/PKGBUILD10
1 files changed, 5 insertions, 5 deletions
diff --git a/community/torch/PKGBUILD b/community/torch/PKGBUILD
index f7b5d89ce..cc4fffb13 100644
--- a/community/torch/PKGBUILD
+++ b/community/torch/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 21793 2010-07-17 10:25:22Z spupykin $
+# $Id: PKGBUILD 65413 2012-02-21 03:29:54Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
pkgname=torch
pkgver=3.1
-pkgrel=2
+pkgrel=3
pkgdesc="State of the art machine learning library"
arch=(i686 x86_64 'mips64el')
url="http://packages.debian.org/source/lenny/torch3"
@@ -20,14 +20,14 @@ build() {
[ $NOEXTRACT -eq 1 ] || cat $srcdir/torch3_$pkgver-2.diff | patch -p1
[ $NOEXTRACT -eq 1 ] || make depend
- make || return 1
+ make
mkdir -p $pkgdir/usr/{include/torch,lib}
for i in core convolutions datasets decoder distributions gradients kernels matrix nonparametrics speech; do
- install -D -m0644 $i/*.h $pkgdir/usr/include/torch/ || return 1
+ install -D -m0644 $i/*.h $pkgdir/usr/include/torch/
done
- install -D -m0755 lib/*.so* $pkgdir/usr/lib/ && \
+ install -D -m0755 lib/*.so* $pkgdir/usr/lib/
install -D -m0644 lib/*.a $pkgdir/usr/lib/
}