blob: e6899bebb8e976a9fb922df28230d7823ed273bc (
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
|
# Maintainer: Dmitry Popov <ixaphire@gmail.com>
_name=xgboost
pkgbase=xgboost-git
pkgname=('xgboost-git'
'python-xgboost-git'
'python2-xgboost-git')
pkgver=r2571.3ce3356
pkgrel=1
url='https://github.com/dmlc/xgboost'
license=('APACHE')
source=('git+https://github.com/dmlc/xgboost.git'
'git+https://github.com/dmlc/dmlc-core'
'git+https://github.com/dmlc/rabit'
'python_no_libs.patch')
makedepends=('python2-setuptools' 'python-setuptools')
arch=('x86_64')
sha256sums=('SKIP'
'SKIP'
'SKIP'
'bf7dddaaf6f6074a0d089c987876bd71961a637e40dae658fc04324153dfa568')
pkgver() {
cd "${_name}"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
prepare() {
cd "${_name}"
git submodule init
git config submodule.dmlc-core.url "${srcdir}/dmlc-core"
git config submodule.rabit.url "${srcdir}/rabit"
git submodule update
patch -p1 < "${srcdir}/python_no_libs.patch"
}
build() {
cd "${_name}"
make
}
package_xgboost-git() {
pkgdesc='An optimized distributed gradient boosting library designed to be highly efficient, flexible and portable'
provides=('xgboost')
conflicts=('xgboost')
optdepends=('python-xgboost-git: Python 3 Wrapper'
'python2-xgboost-git: Python 2 Wrapper')
cd "${_name}"
# Install License
install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
# Install Documentation
install -D -m644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
# Install main executable
install -Dm755 "xgboost" "${pkgdir}/usr/bin/xgboost"
# Install shared libraries
mkdir -p "${pkgdir}/usr/lib"
install -Dm644 lib/*.a "${pkgdir}/usr/lib"
install -Dm644 lib/*.so "${pkgdir}/usr/lib"
# Install includes
mkdir -p "${pkgdir}/usr/include"
cp -r include/xgboost "${pkgdir}/usr/include"
cp -r dmlc-core/include/dmlc "${pkgdir}/usr/include"
cp -r rabit/include/rabit "${pkgdir}/usr/include"
# Copy the demos to opt/xgboost
mkdir -p "${pkgdir}"/opt/xgboost
cp -r demo "${pkgdir}"/opt/xgboost
}
package_python2-xgboost-git() {
pkgdesc='XGBoost Python 2 wrapper'
depends=('xgboost'
'python2'
'python2-numpy'
'python2-scipy')
conflicts=('python2-xgboost')
provides=('python2-xgboost')
cd "${_name}/python-package"
python2 setup.py install --root="${pkgdir}" --optimize=1
}
package_python-xgboost-git() {
pkgdesc='XGBoost Python 3 wrapper'
depends=('xgboost'
'python'
'python-numpy'
'python-scipy')
conflicts=('python-xgboost')
provides=('python-xgboost')
cd "${_name}/python-package"
python setup.py install --root="${pkgdir}" --optimize=1
}
# vim:set ts=2 sw=2 et:
|