https://github.com/elkowar/eww
Window manager-independent widget system
---
testing/eww/APKBUILD | 42 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
create mode 100644 testing/eww/APKBUILD
diff --git a/testing/eww/APKBUILD b/testing/eww/APKBUILD
new file mode 100644
index 0000000000..a8015b800d
--- /dev/null
+++ b/testing/eww/APKBUILD
@@ -0,0 +1,42 @@
+# Contributor: Edd Salkield <edd@salkield.uk>
+# Maintainer: Edd Salkield <edd@salkield.uk>
+pkgname=eww
+pkgver=0.2.0
+pkgrel=0
+pkgdesc="Window manager independent widget system"
+url="https://github.com/elkowar/eww"
+arch="x86_64 armv7 armhf aarch64 x86 ppc64le" # limited by rust/cargo
+license="MIT"
+depends="gtk+3.0 pango gdk-pixbuf cairo glib libgcc gtk-layer-shell"
these should not be necessary as abuild automatically scans ELF files to find the libraries required
--
via https://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/28362#note_197837
+makedepends="rustup gtk+3.0-dev pango-dev gdk-pixbuf-dev cairo-dev glib-dev gtk-layer-shell-dev"
+options="net"
+source="$pkgname-$pkgver.tar.gz::https://github.com/elkowar/$pkgname/archive/refs/tags/v$pkgver.tar.gz"
+builddir="$srcdir/$pkgname-$pkgver"
+
+build() {
+ # eww depends on features currently in rust nightly
+ local nightlydir=$(mktemp -p $builddir -d)
nack, we should use stable
--
via https://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/28362#note_197838
+ export CARGO_HOME="$nightlydir/cargo"
+ export RUSTUP_HOME="$nightlydir/rustup"
+ export RUSTFLAGS="-C target-feature=-crt-static"
+
+ rustup-init -y --no-modify-path --no-update-default-toolchain --default-toolchain nightly
+ source "$CARGO_HOME"/env
+ cargo build --locked --release --no-default-features --features=wayland
+}
+
+check() {
+ cargo test --locked --release
+}
+
+package() {
+ # We would install with cargo install like so...
+ # cargo install --locked --path --all . --root="$pkgdir"/usr
+ # However, Cargo.toml is a virtual manifest, and installing those
+ # is currently not supported: https://github.com/rust-lang/cargo/issues/4101
+ install -Dm755 ./target/release/eww "$pkgdir"/usr/bin/eww
+}
+
+sha512sums="
+255af012260c2f6568f33729b072570ac2edf416a2c5e0014c5911829a240e523969dee5685f609aafbf21fd67a58eb871b1f5aacead32805fd856c8b71858a4 eww-0.2.0.tar.gz
+"
--
2.34.1
Sorry to bother you @mailinglist-bot,
but we've detected that this merge request hasn't seen any recent activity. If you need help or want to discuss your approach with developers you can ping `@team/mentors`. You can also ask on IRC on `#alpine-devel` on irc.oftc.net. If no further activity occurs in this MR, Alpine developers may close it in the future.
Thanks for your contribution.
--
via https://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/28362#note_205407