mirror of
https://github.com/archlinux/aur.git
synced 2026-03-14 23:16:48 +01:00
Update 20260215-1: fix for forecasts module.
This commit is contained in:
parent
3abce90418
commit
771aaab9a0
2 changed files with 15 additions and 5 deletions
6
.SRCINFO
6
.SRCINFO
|
|
@ -1,7 +1,7 @@
|
|||
pkgbase = e-modules-extra-git
|
||||
pkgdesc = Enlightenment modules: Extra unsupported modules in Git not already packaged elsewhere
|
||||
pkgver = 20260208
|
||||
pkgrel = 3
|
||||
pkgver = 20260215
|
||||
pkgrel = 1
|
||||
url = https://git.enlightenment.org/
|
||||
arch = i686
|
||||
arch = x86_64
|
||||
|
|
@ -18,6 +18,7 @@ pkgbase = e-modules-extra-git
|
|||
source = git+https://git.enlightenment.org/enlightenment/enlightenment-module-cpu.git
|
||||
source = git+https://git.enlightenment.org/enlightenment/enlightenment-module-desksanity.git
|
||||
source = git+https://git.enlightenment.org/enlightenment/enlightenment-module-eenvader.fractal.git
|
||||
source = git+https://git.enlightenment.org/enlightenment/enlightenment-module-forecasts.git
|
||||
source = git+https://git.enlightenment.org/enlightenment/enlightenment-module-mem.git
|
||||
source = git+https://git.enlightenment.org/enlightenment/enlightenment-module-net.git
|
||||
source = git+https://git.enlightenment.org/enlightenment/enlightenment-module-penguins.git
|
||||
|
|
@ -29,5 +30,6 @@ pkgbase = e-modules-extra-git
|
|||
sha256sums = SKIP
|
||||
sha256sums = SKIP
|
||||
sha256sums = SKIP
|
||||
sha256sums = SKIP
|
||||
|
||||
pkgname = e-modules-extra-git
|
||||
|
|
|
|||
14
PKGBUILD
14
PKGBUILD
|
|
@ -13,7 +13,7 @@ _module_list=(
|
|||
# 'everything-places' # fails to compile
|
||||
# 'everything-websearch' # fails to compile, adds dep on e_dbus
|
||||
# 'eweather' # libeweather(?), not compatible with E >= 0.18.0
|
||||
# 'forecasts' # not compatible with Enlightenment < 0.19.99
|
||||
'forecasts'
|
||||
# 'mail' # not compatible with Enlightenment >= 0.19.0
|
||||
'mem'
|
||||
# 'moon' # not compatible with Enlightenment >= 0.19.0
|
||||
|
|
@ -35,8 +35,8 @@ containsElement () {
|
|||
}
|
||||
|
||||
pkgname=e-modules-extra-git
|
||||
pkgver=20260208
|
||||
pkgrel=3
|
||||
pkgver=20260215
|
||||
pkgrel=1
|
||||
pkgdesc="Enlightenment modules: Extra unsupported modules in Git not already packaged elsewhere"
|
||||
arch=('i686' 'x86_64')
|
||||
url="https://git.enlightenment.org/"
|
||||
|
|
@ -80,6 +80,10 @@ build() {
|
|||
/usr/bin/meson setup build
|
||||
ninja -C build
|
||||
;;
|
||||
forecasts)
|
||||
/usr/bin/meson build
|
||||
ninja -C build
|
||||
;;
|
||||
*)
|
||||
./autogen.sh \
|
||||
--prefix=/usr \
|
||||
|
|
@ -102,6 +106,10 @@ package() {
|
|||
# ninja -C build install
|
||||
/usr/bin/meson install -C build --destdir "$pkgdir"
|
||||
;;
|
||||
forecasts)
|
||||
# ninja -C build install
|
||||
/usr/bin/meson install -C build --destdir "$pkgdir"
|
||||
;;
|
||||
*)
|
||||
make DESTDIR="$pkgdir" install
|
||||
;;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue