blob: b675367f302e2f8b1f827f26cb1e4dfa327c2d60 (
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
|
# Maintainer: Hannah
# Maintainer: FabioLolix
# Contributor: J.D. Broberg <jdbroberg72 at gmail dot com>
pkgname=odin-git
_pkgname=odin
pkgver=r11214.f1779c85d
pkgrel=1
pkgdesc="A fast, concise, readable, pragmatic and open sourced programming language."
arch=(x86_64)
url="https://github.com/odin-lang/odin"
license=(BSD)
depends=(glibc llvm-libs)
makedepends=(git clang llvm)
checkdepends=(python)
optdepends=(python)
provides=(odin)
conflicts=(odin)
source=("git+https://github.com/odin-lang/odin.git")
sha256sums=('SKIP')
pkgver() {
cd "${_pkgname}"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd "${_pkgname}"
make release
}
check() {
cd "${_pkgname}"
make -C vendor/stb/src
make -C vendor/cgltf/src
make -C vendor/miniaudio/src
./odin check examples/all -strict-style
./odin test tests/core/normal.odin -file -all-packages -define:ODIN_TEST_FANCY=false
./odin test tests/core/speed.odin -o:speed -file -all-packages -define:ODIN_TEST_FANCY=false
./odin test tests/vendor -all-packages -define:ODIN_TEST_FANCY=false
./odin test tests/internal -all-packages -define:ODIN_TEST_FANCY=false
}
package() {
cd "${_pkgname}"
install -d "${pkgdir}/usr/bin"
install -d "${pkgdir}/usr/lib/${_pkgname}"
cp odin "${pkgdir}/usr/lib/${_pkgname}/odin"
cp -r core "${pkgdir}/usr/lib/${_pkgname}/core"
cp -r base "${pkgdir}/usr/lib/${_pkgname}/base"
ln -s "/usr/lib/${_pkgname}/odin" "${pkgdir}/usr/bin/odin"
install -Dm644 README.md "${pkgdir}/usr/share/doc/${_pkgname}/README.md"
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
cp -r examples "${pkgdir}/usr/share/doc/${_pkgname}/examples"
cp -r vendor "${pkgdir}/usr/lib/${_pkgname}/vendor"
}
|