Permalink
Newer
100755
35 lines (24 sloc)
733 Bytes
1
#!/usr/bin/env beesh
2
3
# BEE_VERSION nbench-byte-2.2.3-2
4
5
# more info: https://www.math.utah.edu/~mayer/linux/bmark.html
6
7
SRCURL[0]="http://www.math.utah.edu/~mayer/linux/nbench-byte-${PKGVERSION}.tar.gz"
8
9
PATCHURL+=(/src/mariux/patches/nbench-byte-2.2.3-fix-cflags.patch)
10
PATCHURL+=(/src/mariux/patches/nbench-byte-2.2.3-fix-parallel-make.patch)
11
PATCHURL+=(/src/mariux/patches/nbench-byte-2.2.3-fix-dat-path.patch)
12
13
# build_in_sourcedir
14
15
# sourcesubdir_append src
16
17
#mee_extract() {
18
# bee_extract "${@}"
19
#}
20
21
#mee_configure() {
22
# bee_configure
23
#}
24
25
#mee_build() {
26
# bee_build
27
#}
28
29
mee_install() {
30
mkdir -p $D/usr/sbin
31
cp -va nbench $D/usr/sbin
32
33
mkdir -p $D/usr/share/nbench
34
cp -va NNET.DAT $D/usr/share/nbench
35
}