Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions uutils-coreutils/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

_realname=coreutils
pkgname="uutils-${_realname}"
pkgver=0.6.0
pkgver=0.7.0
pkgrel=1
pkgdesc="Cross-platform Rust rewrite of the GNU coreutils"
arch=('any')
Expand All @@ -19,7 +19,7 @@ makedepends=("git" "rust" "pkgconf")
source=("https://github.com/uutils/coreutils/archive/${pkgver}/${_realname}-${pkgver}.tar.gz"
"git+https://github.com/nix-rust/nix#tag=v0.30.1"
"nix-ioctl.patch")
sha256sums=('f751b8209ec05ae304941a727e42a668dcc45674986252f44d195ed43ccfad2f'
sha256sums=('dc56a3c4632742357d170d60a7dcecb9693de710daeaafa3ad925750b1905522'
'aebec7d9c51d26d003333bc53158ac75b8e960ca5cb75d24fe8a5cb027c59842'
'b0b8db1334dfcbc805d087969e1860e67ec0dc13a54589741b22684ee3144cee')

Expand All @@ -44,10 +44,10 @@ package() {

export RUSTONIG_DYNAMIC_LIBONIG=1

make install \
make -j1 install \
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

make does not tell pararrelism to cargo, but GNUmakefile has its own CARGOFLAGS if you really want to restrict it.

DESTDIR="${pkgdir}" \
PREFIX="/usr" \
PROFILE=release-fast \
PROFILE=release \
SKIP_UTILS="stdbuf" \
PROG_PREFIX="uu-" \
MULTICALL=y
Expand Down
Loading