blob: cedfac210c7efc95c6e1dc5f3a6000dc954a1b64 (
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
|
# Maintainer: yuioto <yuiotochan@outlook.com>
# Contributor: Luis Martinez <luis dot martinez at disroot dot org>
# Contributor: Shunsuke Shibayama <sbym1346@gmail.com>
pkgname=erg-git
_pkg="${pkgname%-git}"
pkgver=0.6.7.r0.g86eaba39
_tag=v0.6.7
# _tag="$(git -C "$_pkg" describe --abbrev=0)"
pkgrel=1
pkgdesc='Statically typed language that builds upon the Python ecosystem'
url="https://github.com/erg-lang/erg"
license=('MIT' 'Apache')
arch=('x86_64')
provides=("$_pkg")
conflicts=("$_pkg" "$_pkg-bin")
depends=('python')
makedepends=('cargo' 'git')
# If you want to use the latest commit, you can use the following command, but this can cause errors.
# source=("$_pkg::git+$url.git")
source=("$_pkg::git+$url.git#tag=$_tag")
sha256sums=('SKIP')
# By enabling the --features flag, you can change the language in which error messages are displayed.
#
# Japanese
# cargo install erg --features japanese
#
# Chinese (Simplified)
# cargo install erg --features simplified_chinese
#
# Chinese (Traditional)
# cargo install erg --features traditional_chinese
#
# Debugging mode (for contributors)
# cargo install erg --features debug
pkgver() {
git -C "$_pkg" describe --long --tags | sed 's/^v//;s/-/.r/;s/-/./'
}
prepare() {
cd "$_pkg"
cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
}
build() {
export RUSTUP_TOOLCHAIN=stable
export CARGO_TARGET_DIR=target
cd "$_pkg"
cargo build --release --frozen
}
check() {
export RUSTUP_TOOLCHAIN=stable
cd "$_pkg"
cargo test --frozen
}
package() {
cd "$_pkg"
install -Dm755 "target/release/$_pkg" -t "$pkgdir/usr/bin"
install -Dm644 LICENSE-{MIT,APACHE} -t "$pkgdir/usr/share/licenses/$pkgname"
install -Dm644 README{,_zh-CN,_zh-TW,_JA}.md -t "$pkgdir/usr/share/doc/$pkgname"
}
|