blob: d62219d8cbbb4783ed264ba779cbf6bd73855427 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
# Maintainer : Daniel Bermond <dbermond@archlinux.org>
pkgbase=caffe-cuda-git
pkgname=('caffe-cuda-git' 'caffe-cuda-doc-git')
pkgver=1.0.r136.g9b8915401
pkgrel=3
pkgdesc='A deep learning framework made with expression, speed, and modularity in mind (with cuda support, git version)'
arch=('x86_64')
url='https://caffe.berkeleyvision.org/'
license=('BSD')
makedepends=('openblas' 'lapack' 'boost-libs' 'protobuf' 'google-glog' 'gflags'
'hdf5' 'opencv' 'leveldb' 'lmdb' 'python' 'python-numpy' 'python-pandas'
'cuda' 'nccl'
'git' 'boost' 'doxygen' 'texlive-core' 'texlive-latexextra' 'ghostscript')
source=('git+https://github.com/BVLC/caffe.git'
'Makefile.config'
'010-caffe-opencv4-fix.patch'::'https://github.com/BVLC/caffe/commit/7f503bd9a19758a173064e299ab9d4cac65ed60f.patch'
'020-caffe-protobuf3.19.4-fix.patch'::'https://github.com/BVLC/caffe/commit/1b317bab3f6413a1b5d87c9d3a300d785a4173f9.patch'
'030-caffe-cuda10-fix.patch'::'https://github.com/BVLC/caffe/commit/7ae5c5b9d07895e77a6ed0cafbe790aa5504b6a7.patch')
sha256sums=('SKIP'
'dd729ce6944f0608dec13928507d2b3c5e155bd204d9217b356f6f4562f1dd42'
'2072c8ca1393b53ef280a15c43af940cc9bf1419ae32b3d8a6541b10b8cb50e9'
'65be5a646ab32e9b277b4352b702a57ac6c79af5258e12e33b9751f07d1031aa'
'a46aa391d4f7df7dd038c753ecbc0459722cd4df19dbac166a3b3f39a659d39a')
prepare() {
cp -af Makefile.config caffe
# https://github.com/BVLC/caffe/pull/6625
patch -d caffe -Np1 -i "${srcdir}/010-caffe-opencv4-fix.patch"
# https://github.com/BVLC/caffe/pull/7044
patch -d caffe -Np1 -i "${srcdir}/020-caffe-protobuf3.19.4-fix.patch"
# https://github.com/BVLC/caffe/pull/6681
patch -d caffe -Np1 -i "${srcdir}/030-caffe-cuda10-fix.patch"
}
pkgver() {
git -C caffe describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
make -C caffe all pycaffe test
rm -rf caffe/doxygen
make -C caffe docs distribute
}
check() {
make -C caffe runtest
}
package_caffe-cuda-git() {
depends=('openblas' 'lapack' 'boost-libs' 'protobuf' 'google-glog' 'gflags'
'hdf5' 'opencv' 'leveldb' 'lmdb' 'python' 'python-numpy' 'python-pandas'
'cuda' 'nccl')
optdepends=(
# official repositories:
'cython' 'python-scipy' 'python-matplotlib' 'ipython' 'python-h5py'
'python-networkx' 'python-nose' 'python-dateutil' 'python-protobuf'
'python-gflags' 'python-yaml' 'python-pillow' 'python-six'
# AUR:
'python-leveldb' 'python-scikit-image' 'python-pydotplus'
# NOTE:
# python-pydotplus (or python-pydot) is required by python executable 'draw_net.py'
# https://github.com/BVLC/caffe/blob/9b891540183ddc834a02b2bd81b31afae71b2153/python/caffe/draw.py#L7-L22
)
provides=('caffe' 'caffe-cuda' 'caffe-git')
conflicts=('caffe')
local _pyver
_pyver="$(python -c 'import sys; print("%s.%s" %sys.version_info[0:2])')"
install -d -m755 "${pkgdir}/usr"/{bin,include,lib/python"$_pyver"/site-packages}
# binaries
install -m755 caffe/distribute/bin/* "${pkgdir}/usr/bin"
# library
local _sover
local _sover_full
_sover="$(find caffe/distribute/lib -type f -name "libcaffe.so.*.*.*" | sed 's|.*\.so\.||;s|\..*||')"
_sover_full="$(find caffe/distribute/lib -type f -name "libcaffe.so.*.*.*" | sed 's|.*\.so\.||')"
cp -dr --no-preserve='ownership' caffe/distribute/lib/libcaffe.so* "${pkgdir}/usr/lib"
ln -s "libcaffe.so.${_sover_full}" "${pkgdir}/usr/lib/libcaffe.so.${_sover}"
chmod 755 "${pkgdir}/usr/lib"/libcaffe.so.*.*.*
# headers
cp -dr --no-preserve='ownership' caffe/distribute/include "${pkgdir}/usr"
# python
install -D -m755 caffe/distribute/python/*.py "${pkgdir}/usr/bin"
cp -dr --no-preserve='ownership' caffe/distribute/python/caffe "${pkgdir}/usr/lib/python${_pyver}/site-packages"
# proto
install -D -m644 caffe/distribute/proto/caffe.proto -t "${pkgdir}/usr/share/caffe"
# license
install -D -m644 caffe/LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
}
package_caffe-cuda-doc-git() {
pkgdesc="$(sed 's/\(git[[:space:]]version\)/documentation, \1/' <<< "$pkgdesc")"
arch=('any')
provides=('caffe-doc' 'caffe-doc-git')
conflicts=('caffe-doc')
install -d -m755 "${pkgdir}/usr/share/doc"
cp -dr --no-preserve='ownership' caffe/doxygen/html "${pkgdir}/usr/share/doc/caffe"
install -D -m644 caffe/LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
}
|