blob: 67ecb6a9fed04a64e701350d723b5cb16dbe0d18 (
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
|
_basepgkname=llamafile
pkgname="${_basepgkname}"
pkgver=0.8.16
pkgrel=1
pkgdesc="Distribute and run LLMs with a single file."
arch=('x86_64')
url="https://github.com/Mozilla-Ocho/llamafile"
license=('Apache-2.0')
optdepends=(
'hip-runtime-amd: AMD GPU-Offloading Support'
'hipblas: Used for static compiling with rocm'
'rocminfo: Used for verifying existance of rocm'
'cuda: Nvidia GPU-Offloading Support'
)
source=( "${pkgname}::https://github.com/Mozilla-Ocho/llamafile/releases/download/${pkgver}/llamafile-${pkgver}.zip"
)
sha256sums=(
'719fa60a506c71c42613e652dc61d0eacbc1e1235f5c73755d655ad657580327'
)
provides=(
'llamafile'
'llamafile-bench'
'llamafile-imatrix'
'llamafile-convert'
'llamafile-perplexity'
'llamafile-quantize'
'llamafile-tokenize'
'llava-quantize'
'llamafile-upgrade-engine'
'sdfile'
'whisperfile'
'zipalign'
)
conflicts=('llamafile-git' 'android-sdk-build-tools' 'zipalign')
options=(!strip)
package() {
cd "${srcdir}"
bin_dir="${_basepgkname}-${pkgver}/bin"
pushd $bin_dir
for binary in $(find . -type f); do
binary_name=$(basename "$binary")
install -Dm755 "$binary" "${pkgdir}/usr/bin/${binary_name}"
done
popd
man_dir="${_basepgkname}-${pkgver}/share/man"
pushd $man_dir
for man_page in $(find . -type f); do
man_page_name=$(basename "$man_page")
install -Dm600 "$man_page" "${pkgdir}/usr/share/man/man1/${man_page_name%.*}.1"
done
popd
doc_dir="${_basepgkname}-${pkgver}/share/doc/llamafile"
mkdir -p "${pkgdir}/usr/share/doc/llamafile"
pushd $doc_dir
for doc in $(find . -type f); do
doc_file_name=$(basename "$doc")
install -Dm600 "$doc" "${pkgdir}/usr/share/doc/llamafile/${doc_file_name}"
done
popd
}
|