summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: be04d7410bd7925336caf0ab01213b16d639d6d8 (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
# Maintainer: Sam <dev at samarthj dot com>
# Contributor: Árni Dagur <arnidg@protonmail.ch>

# shellcheck disable=2034,2148,2154

_pkgname='uutils-coreutils'
pkgname="${_pkgname}-git"
pkgver=r5937.e9d63519d
pkgrel=1
pkgdesc="GNU Coreutils rewritten in Rust"
arch=('x86_64')
url='https://github.com/uutils/coreutils'
license=('MIT')
depends=('glibc' 'gcc-libs')
makedepends=('git' 'rust' 'cargo' 'cmake' 'python-sphinx')
conflicts=('uutils-coreutils')
source=("git+https://github.com/uutils/coreutils.git")
sha512sums=('SKIP')

pkgver() {
  cd coreutils || exit 1
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
  cd coreutils || exit 1
  make PROFILE=release
}

check() {
  cd coreutils || exit 1
  # TODO: Fix the failing tests. These 4 seem to fail for a few benign reasons.
  make test \
    TEST_NO_FAIL_FAST="--no-fail-fast -- --skip test_chown::test_chown_only_group --skip test_chown::test_chown_only_group_id --skip test_pinky::test_no_flag --skip test_who::test_lookup"
}

package() {
  cd coreutils || exit 1
  make install \
    DESTDIR="$pkgdir" \
    PREFIX=/usr \
    MANDIR=/share/man/man1 \
    PROG_PREFIX=uu- \
    PROFILE=release
  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/${pkgname}/LICENSE"
}