mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-04 08:55:20 +02:00
36 lines
908 B
Text
36 lines
908 B
Text
# Contributor: rahmanshaber <rahmanshaber@yahoo.com>
|
|
# Maintainer: rahmanshaber <rahmanshaber@yahoo.com>
|
|
pkgname=coreaction
|
|
pkgver=5.0.0
|
|
pkgrel=0
|
|
pkgdesc="A side bar for showing widgets from C-Suite"
|
|
arch="all"
|
|
url="https://gitlab.com/cubocore"
|
|
license="GPL-3.0-or-later"
|
|
makedepends="
|
|
cmake
|
|
libcprime-dev
|
|
libcsys-dev
|
|
qt6-qtbase-dev
|
|
qt6-qtsvg-dev
|
|
samurai
|
|
"
|
|
source="https://gitlab.com/cubocore/coreapps/coreaction/-/archive/v$pkgver/coreaction-v$pkgver.tar.gz"
|
|
builddir="$srcdir/$pkgname-v$pkgver"
|
|
options="!check" # No tests
|
|
|
|
build() {
|
|
cmake -B build -GNinja \
|
|
-DCMAKE_BUILD_TYPE=None \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=lib
|
|
cmake --build build
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" cmake --install build
|
|
}
|
|
|
|
sha512sums="
|
|
b6dbdf37e0bc7052a6805f78672b015b47951d78578474742a55b4f03a3c9d76b62188629dcfc92459cb20df58f8b87d2f119fc0dda95a01d185b1f6dfe4c6d8 coreaction-v5.0.0.tar.gz
|
|
"
|