summaryrefslogtreecommitdiff
path: root/PKGBUILD
diff options
context:
space:
mode:
authorpml68 <contact@pml68.dev>2025-06-30 01:16:05 +0200
committerpml68 <contact@pml68.dev>2025-06-30 02:03:56 +0200
commit04542e8fc27a4dffeea2d2f127efa069462124b6 (patch)
tree7f99aececbf9cc475c58ca6dbfc7ae0859ec2429 /PKGBUILD
parentfix(PKGBUILD): cargo dependency not found, "reference to `$srcdir`" [skip ci] (diff)
downloadiced-builder-04542e8fc27a4dffeea2d2f127efa069462124b6.tar.gz
chore(PKGBUILD): remove clang and mold from `makedepends` [skip ci]
Diffstat (limited to '')
-rw-r--r--PKGBUILD5
1 files changed, 2 insertions, 3 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 62ba451..8b1f1f4 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: pml68 <contact@pml68.dev>
pkgname=iced-builder
-pkgver=0.1.0.r187.g2bbe61b
+pkgver=0.1.0.r189.gec42d61
pkgrel=1
pkgdesc='UI builder for iced, built with iced.'
arch=(x86_64)
@@ -16,8 +16,6 @@ optdepends=('rustfmt: better code formatting')
makedepends=(
git
cargo
- clang
- mold
)
options=('!lto' '!strip' '!debug')
source=("$pkgname::git+${url}.git")
@@ -25,6 +23,7 @@ sha256sums=('SKIP')
prepare() {
cd "${pkgname}"
+ rm .cargo/config.toml
export RUSTUP_TOOLCHAIN=stable
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"