add owncloud client and deps
All checks were successful
Release Alpine apk for ARM64v8 / compilation-arm64v8 (push) Successful in 1h3m47s
All checks were successful
Release Alpine apk for ARM64v8 / compilation-arm64v8 (push) Successful in 1h3m47s
This commit is contained in:
parent
637546a971
commit
ee5739cbbe
6 changed files with 70 additions and 1 deletions
1
.gitignore
vendored
Normal file → Executable file
1
.gitignore
vendored
Normal file → Executable file
|
@ -3,3 +3,4 @@ keep/*/src/
|
|||
not_ready/*/src/
|
||||
*.tar.gz
|
||||
*.zip
|
||||
quicksetup.sh
|
||||
|
|
0
not_ready/py3-StrEnum/APKBUILD
Normal file → Executable file
0
not_ready/py3-StrEnum/APKBUILD
Normal file → Executable file
0
not_ready/py3-mpris-server/APKBUILD
Normal file → Executable file
0
not_ready/py3-mpris-server/APKBUILD
Normal file → Executable file
|
@ -6,7 +6,7 @@ pkgrel=0
|
|||
pkgdesc="Polish dictionary for Hunspell"
|
||||
arch="noarch"
|
||||
url='https://www.sjp.pl/slownik/ort/'
|
||||
license="GPL-3.0-or-later"
|
||||
license="Apache-2.0"
|
||||
makedepends="unzip enca"
|
||||
depends="hunspell"
|
||||
source="https://sjp.pl/sl/ort/sjp-myspell-pl-$pkgver.zip"
|
||||
|
|
34
srcpkgs/libre-graph-api-cpp-qt-client/APKBUILD
Executable file
34
srcpkgs/libre-graph-api-cpp-qt-client/APKBUILD
Executable 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
|
||||
"
|
34
srcpkgs/owncloud-client/APKBUILD
Executable file
34
srcpkgs/owncloud-client/APKBUILD
Executable 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
|
||||
"
|
Loading…
Add table
Reference in a new issue