blob: 3a47bb6c87ee1290eeadb4c1399115a3b24859e4 (
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
# Maintainer : Daniel Bermond <dbermond@archlinux.org>
# Contributor: Drew Noel <drewmnoel@gmail.com>
# Contributor: Jonathan Yantis
pkgbase=caffe-git
pkgname=(
'caffe-git'
'caffe-doc-git')
pkgver=1.0.r136.g9b8915401
pkgrel=3
pkgdesc='A deep learning framework made with expression, speed, and modularity in mind (cpu only, git version)'
arch=('x86_64')
url='https://caffe.berkeleyvision.org/'
license=('BSD-2-Clause')
makedepends=(
'boost'
'boost-libs'
'doxygen'
'gflags'
'ghostscript'
'git'
'google-glog'
'hdf5'
'leveldb'
'lmdb'
'openblas'
'opencv'
'protobuf'
'python'
'python-numpy'
'python-pandas'
'python-protobuf' # to satisfy pkgcheck
'python-scikit-image' # to satisfy pkgcheck
'python-scipy' # to satisfy pkgcheck
'python-six' # to satisfy pkgcheck
'texlive-core'
'texlive-fontutils'
'texlive-latexextra')
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')
sha256sums=('SKIP'
'403f65b68e66de35d151a6cc287acb2a5d9c08c1ca7ae45245756f43c553cf0f'
'2072c8ca1393b53ef280a15c43af940cc9bf1419ae32b3d8a6541b10b8cb50e9'
'65be5a646ab32e9b277b4352b702a57ac6c79af5258e12e33b9751f07d1031aa')
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"
}
pkgver() {
git -C caffe describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
# definitions needed by glog >= 0.7.0
export COMMON_FLAGS='-DGLOG_USE_GLOG_EXPORT -DGLOG_USE_GFLAGS'
make -C caffe all pycaffe test
rm -rf caffe/doxygen
make -C caffe docs distribute
}
check() {
make -C caffe runtest
}
package_caffe-git() {
depends=(
'boost-libs'
'gcc-libs'
'gflags'
'google-glog'
'glibc'
'hdf5'
'leveldb'
'lmdb'
'openblas'
'opencv'
'protobuf'
'python'
'python-numpy'
'python-pandas')
optdepends=(
'python-protobuf: for Python bindings'
'python-pydotplus: for draw_net.py executable'
'python-scikit-image: for Python bindings'
'python-scipy: for Python bindings'
'python-six: for Python bindings')
provides=('caffe' 'caffe-cpu-git')
conflicts=('caffe' 'caffe-cpu-git')
replaces=('caffe-cpu-git')
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 644 "${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-doc-git() {
pkgdesc="$(sed 's/\(git[[:space:]]version\)/documentation, \1/' <<< "$pkgdesc")"
arch=('any')
provides=('caffe-doc')
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}"
}
|