add edge
Some checks failed
Release Alpine apk for ARM64v8 / compilation-arm64v8 (push) Failing after 57s

This commit is contained in:
ITmodulo 2025-05-12 23:40:33 +02:00
commit b0b097f3cb
7 changed files with 130 additions and 12 deletions

View file

@ -1,30 +0,0 @@
# Contributor: ITmodulo <itmodulo@disroot.org>
# Maintainer: ITmodulo <itmodulo@disroot.org>
pkgname=CameraCtl
pkgver=0.0.1
pkgrel=0
pkgdesc="Pocophone F1 tweaked camera"
url="https://gitlab.com/NekoCWD/cameractrl"
license="GPL-3.0-or-later"
arch="all"
makedepends="blueprint-compiler vala build-base linux-headers git libgudev-dev gtk4.0-dev gtk4-layer-shell-dev libadwaita-dev meson"
source="$pkgname-$pkgver.tar.gz::https://gitlab.com/NekoCWD/cameractrl/-/archive/master/cameractrl-master.tar.gz"
build() {
cd "CameraCtl-master"
}
check() {
go test ./...
}
package() {
cd "CameraCtl-master"
install -Dm755 bin/$pkgname "$pkgdir"/usr/bin/$pkgname
install -Dm644 res/appicon.png "$pkgdir"/usr/share/pixmaps/supersonic-desktop.png
install -Dm644 res/supersonic-desktop.desktop "$pkgdir"/usr/share/applications/supersonic-desktop.desktop
}
sha512sums="
f0ddf35086c52103cadf183ef9b35b1e785f6031db47b369bb6a52edc5d87eae91f7e56a4cbf63fa49b1ee923aceb26a3de5ab01ca824afaba4e6d8e93a135e7 CameraCtl-0.0.1.tar.gz
"

27
not_ready/folio/APKBUILD Normal file
View file

@ -0,0 +1,27 @@
pkgname=folio
pkgver=0.48.7
pkgrel=1
pkgdesc="Code Intelligence for Vala"
url="https://github.com/vala-lang/vala-language-server"
arch="all"
license="LGPL-2.1-or-later"
makedepends="meson vala json-glib-dev glib-dev libgee-dev jsonrpc-glib-dev scdoc"
subpackages="$pkgname-dbg $pkgname-doc"
source="https://github.com/vala-lang/vala-language-server/releases/download/$pkgver/vala-language-server-$pkgver.tar.xz"
build() {
abuild-meson . output
meson compile -C output
}
check() {
meson test --no-rebuild --print-errorlogs -C output
}
package() {
DESTDIR="$pkgdir" meson install --no-rebuild -C output
}
sha512sums="
c8249f23c8234aa69809421716abcfcf8d8454b0d92595342b461194186729794b6a3a0e88e4f60e3de2ab183234ffffec53ac2602f3d2b29ad29994c38c47b3 vala-language-server-0.48.7.tar.xz
"

View file

@ -0,0 +1,34 @@
# Contributor: ITmodulo <itmodulo@disroot.org>
# Maintainer: ITmodulo <itmodulo@disroot.org>
pkgname=libre-graph-api-cpp-qt-client
pkgver=1.0.4
pkgrel=0
pkgdesc="Ownclouds' free API for cloud collaboration inspired by the MS Graph API"
url="https://github.com/owncloud/libre-graph-api-cpp-qt-client"
arch="all"
license="Apache-2.0"
depends=
makedepends="extra-cmake-modules glib-dev cmake cmake-extras qt6-qtbase-dev qt5-qtbase-dev samurai"
subpackages="$pkgname-dev"
source="$pkgname-$pkgver.tar.gz::https://github.com/owncloud/libre-graph-api-cpp-qt-client/archive/refs/tags/v$pkgver.tar.gz"
options="!check"
build() {
cd client
cmake -B build -G Ninja \
-DCMAKE_BUILD_TYPE="Release" \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_INSTALL_INCLUDEDIR=/usr/include \
-DBUILD_SHARED_LIBS=ON \
-DCMAKE_INSTALL_SYSCONFDIR=/etc/$pkgname
cmake --build build
}
package() {
cd client
DESTDIR="$pkgdir" cmake --install build
}
sha512sums="
1e7a190abb92c9f3a5d4de8f6c1c3b8c2f8bd2c037e104fc869db8c6eab40eb878e51a627946cdf944ad768db31969e9776d14df3590e30ca3a2be5de0c722b5 libre-graph-api-cpp-qt-client-1.0.4.tar.gz
"

View file

@ -0,0 +1,34 @@
# Contributor: ITmodulo <itmodulo@disroot.org>
# Maintainer: ITmodulo <itmodulo@disroot.org>
pkgname=owncloud-client
pkgver=6.0.0
pkgrel=0
pkgdesc="ownCloud Desktop Client"
url="https://github.com/owncloud/client"
arch="all"
license="GPL-2.0-or-later"
depends=
makedepends="samurai kdsingleapplication-dev qt6-qtbase-dev qt5-qtbase-dev extra-cmake-modules glib-dev cmake qt6-qttools-dev cmake-extras libayatana-appindicator-dev qt6-qtwebengine-dev qtkeychain-dev sqlite-dev qt6-qtquick3d-dev qt6-qtscxml-dev libre-graph-api-cpp-qt-client-dev "
subpackages="$pkgname-dev"
source="$pkgname-$pkgver.tar.gz::https://github.com/owncloud/client/archive/v$pkgver-rc.1.tar.gz"
options="!check"
build() {
cd client-$pkgver-rc.1
cmake -B build -G Ninja \
-DCMAKE_BUILD_TYPE="Release" \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_INCLUDEDIR=/usr/include \
-DBUILD_SHARED_LIBS=ON \
-DCMAKE_INSTALL_SYSCONFDIR=/etc/$pkgname
cmake --build build
}
package() {
cd src/client-$pkgver-rc.1
DESTDIR="$pkgdir" cmake --install build
}
sha512sums="
8ee48b0881022b5dde5136748637dfb5e525ff63d3fe1fd034c768df43d2463907f7eb6053dea314caf1f2918e890353d48c58bbfd531643653ced8920fbd14b owncloud-client-6.0.0.tar.gz
"

35
not_ready/turnon/APKBUILD Executable file
View file

@ -0,0 +1,35 @@
pkgname=turnon
pkgver=2.5.2
pkgrel=0
pkgdesc="Turn on devices in your network on GNOME (wake on lan)"
url="https://github.com/swsnr/turnon"
arch="all !loongarch64"
license="MPL-2.0"
makedepends="make sed openssl-dev rustup glib-dev gtk4.0-dev graphene-dev blueprint-compiler-dev libadwaita-dev"
source="$pkgname-$pkgver.tar.gz::https://github.com/swsnr/turnon/archive/refs/tags/v$pkgver.tar.gz"
prepare() {
default_prepare
rustup-init --default-toolchain stable -y
source ~/.cargo/env
cargo fetch --target="$CTARGET" --locked
}
build() {
source ~/.cargo/env
SKIP_BLUEPRINT=0 cargo build -p hctl --frozen --release
make msgfmt
}
check() {
source ~/.cargo/env
cargo test --release --frozen
}
package() {
source ~/.cargo/env
make DESTPREFIX="${pkgdir}/usr" install
}
sha512sums="
67a372a79eb6aa492609044411720c7f0d9f2916ea41a10747518e2cf806007649025c6633276291efde4d92d55786541828d00cd0b96d7a9235cb42f0fa6739 turnon-2.5.2.tar.gz
"