blob: 1ce4e1636a70db427ad26ff88a9b6e4e4888a442 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
# Maintainer: Wachid Adi Nugroho <wachidadinugroho.maya@gmail.com>
_pkgname=maui-shell
pkgname=$_pkgname-git
pkgver=0.6.6.r11.g8272456
pkgrel=1
pkgdesc='Maui Shell is a convergent shell for desktops, tablets, and phones.'
url='https://github.com/Nitrux/maui-shell'
arch=(x86_64 i686 arm armv6h armv7h aarch64)
license=(LGPL3)
depends=(bluedevil
cask-server-git
fontconfig
karchive
kconfig
kcoreaddons
kcrash
kdbusaddons
kdeclarative
kded
kdesu
# kdoctools
kglobalaccel
ki18n
kiconthemes
kidletime
kinit
kio
kitemmodels
knotifications
knotifyconfig
kpackage
kpeople
krunner
kservice
ktexteditor
kunitconversion
kwallet
kwayland
maui-core-git
mauikit-calendar-git
mauikit-filebrowsing-git
mauikit-git
mauiman-git
phonon-qt6
plasma-nm
plasma-pa
polkit-qt6
prison
qt6-base
qt6-declarative
qt6-quickcontrols2
qt6-svg
qt6-wayland
solid)
makedepends=(git extra-cmake-modules)
optdepends=('maui-settings-git: Settings Manager Apps for the Maui DE')
groups=(maui)
provides=($_pkgname)
conflicts=($_pkgname)
source=(git+$url.git)
sha256sums=('SKIP')
pkgver() {
cd $_pkgname
( set -o pipefail
git describe --long 2>/dev/null | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' ||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
)
}
build() {
cmake -B build -S $_pkgname \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=/usr/lib
cmake --build build
}
package() {
DESTDIR="$pkgdir" cmake --install build
install -Dm644 $_pkgname/LICENSE -t "${pkgdir}"/usr/share/licenses/$_pkgname
}
|