blob: edfab1e9fd773dbaebd2fc5a2e1423ec4e69c5e4 (
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
|
# Maintainer: Taiki Sugawara <buzz.taiki@gmail.com>
# Contributor: Wu Zhenyu <wuzhenyu@ustc.edu>
pkgname=rl_custom_function-git
_pkgname=${pkgname%-git}
pkgver=r25.931201a
pkgrel=1
pkgdesc="Enable to inject custom functions into any readline applications"
arch=('i686' 'x86_64')
url="https://github.com/lincheney/rl_custom_function"
license=('GPL3')
depends=('readline')
makedepends=('cargo')
provides=("$_pkgname")
install=$pkgname.install
source=("$_pkgname::git+https://github.com/lincheney/$_pkgname.git")
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/$_pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd "$srcdir/$_pkgname"
export RUSTUP_TOOLCHAIN=stable
export CARGO_TARGET_DIR=target
cargo build --release --locked
touch main.c
gcc -m32 -shared main.c -o librl_custom_function.so
}
check() {
cd "$srcdir/$_pkgname"
export RUSTUP_TOOLCHAIN=stable
cargo test --frozen
}
package() {
cd "$srcdir/$_pkgname"
install -D -m755 target/release/librl_custom_function.so $pkgdir/usr/lib/librl_custom_function.so
install -D -m644 README.md $pkgdir/usr/share/doc/$_pkgname/README.md
install -D -m644 librl_custom_function.so $pkgdir/usr/lib32/librl_custom_function.so
}
|