blob: f39d20881effd317f90aa611b8689725b6e268c7 (
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
|
# Maintainer: jgmdev <jgmdev@gmail.com>
# Contributor: FreeByrd <nelsonbyrd248@gmail.com>
# Contributor: Tofe <chris.chapuis@gmail.com>
# Contributor: erm67 <erm67@yahoo.it>
# Contributor: ssfdust <ssfdust@gmail.com>
pkgname=cairo-dock-core-wayland-git
pkgver=3.5.99.beta1.20240504.13fb1516
pkgrel=1
pkgdesc='Light eye-candy fully themable animated dock with wayland support'
arch=('i686' 'x86_64')
url='https://github.com/Cairo-Dock/cairo-dock-core'
license=('GPL')
depends=('curl' 'dbus-glib' 'glu' 'gtk3' 'librsvg' 'wayland' 'gtk-layer-shell')
makedepends=('cmake' 'git' 'extra-cmake-modules')
optdepends=(
'wayfire-plugins-scale-ipc: Additional functionality on wayfire'
)
provides=("${pkgname%-git}" "cairo-dock")
conflicts=("${pkgname%-git}" "cairo-dock")
options=(debug)
source=(
"${pkgname}::git+https://github.com/Cairo-Dock/cairo-dock-core.git"
)
sha256sums=(
'SKIP'
)
_builddir="build"
pkgver () {
cd "${srcdir}/${pkgname}"
eval echo -n `grep -oP 'set\s*\(VERSION\s+\K(.*)(?=\))' CMakeLists.txt`
printf ".%s.%s" "$(TZ=UTC git log -1 --pretty='%cd' --date=format-local:%Y%m%d)" "$(git rev-parse --short HEAD)"
}
prepare() {
cd "${srcdir}/${pkgname}"
# if patches are present, apply them
for patch in $(ls "${srcdir}"/*.patch); do
msg2 "Applying $(basename "$patch")"
patch -Np1 -i "$patch"
done
if [[ -d "${srcdir}/${pkgname}/${_builddir}" ]];
then
rm -rf "${srcdir}/${pkgname}/${_builddir}"
fi
mkdir "${srcdir}/${pkgname}/${_builddir}"
}
build() {
cd "${srcdir}/${pkgname}/${_builddir}"
cmake .. \
-DCMAKE_BUILD_TYPE='Release' \
-DCMAKE_INSTALL_PREFIX='/usr'
make -j$(nproc)
}
package() {
cd "${srcdir}/${pkgname}/${_builddir}"
make DESTDIR="${pkgdir}" install
}
|