blob: 55ae6106f43435f3b739cbc879a0b315921e083b (
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
|
# Contributor: Michał Polański <michal@polanski.me>
# Maintainer: Michał Polański <michal@polanski.me>
pkgname=mrsh
# NOTE: this software is not ready to be moved out of the testing repository
pkgver=0_git20210518
_commit=cd3c3a48055ab4085d83f149ff4b4feba40b40cb
pkgrel=0
pkgdesc="Minimal POSIX shell"
url="https://mrsh.sh/"
license="MIT"
arch="all"
makedepends="meson readline-dev"
subpackages="$pkgname-dbg $pkgname-dev $pkgname-libs"
source="$pkgname-$_commit.tar.gz::https://github.com/emersion/mrsh/archive/$_commit.tar.gz"
builddir="$srcdir/mrsh-$_commit"
build() {
abuild-meson . output
meson compile ${JOBS:+-j ${JOBS}} -C output
}
check() {
meson test --no-rebuild -v -C output
}
package() {
DESTDIR="$pkgdir" meson install --no-rebuild -C output
}
sha512sums="
a625ac90b1e395b9b464317f1c36211c29cc3b17acd28eaf7c3bb1deed497cae6980360ffa516367b16a2613850e5d6795f2a9838d00dbfba6111fc7522cad98 mrsh-cd3c3a48055ab4085d83f149ff4b4feba40b40cb.tar.gz
"
|