* update xfdesktop to 4.18.1-3

This commit is contained in:
Alexander Baldeck 2024-11-26 12:48:52 +01:00
parent 434c6341e8
commit 5aff69254d
3 changed files with 30 additions and 14 deletions

View File

@ -1,19 +1,26 @@
pkgbase = xfdesktop
pkgdesc = Xfce's desktop manager
pkgver = 4.18.1
pkgrel = 2
pkgrel = 3
url = https://docs.xfce.org/xfce/xfdesktop/start
arch = x86_64
arch = powerpc64le
arch = powerpc64
arch = powerpc
arch = riscv64
groups = xfce4
license = GPL2
license = GPL-2.0-or-later
makedepends = git
makedepends = glib2-devel
makedepends = intltool
makedepends = xfce4-dev-tools
depends = libxfce4ui
depends = libwnck3
depends = exo
depends = thunar
depends = garcon
depends = hicolor-icon-theme
source = https://archive.xfce.org/src/xfce/xfdesktop/4.18/xfdesktop-4.18.1.tar.bz2
sha256sums = ef9268190c25877e22a9ff5aa31cc8ede120239cb0dfca080c174e7eed4ff756
source = git+https://gitlab.xfce.org/xfce/xfdesktop.git#tag=xfdesktop-4.18.1
sha256sums = a67cae83863dc61fa994282fdf84f42abbcf2d727d41ae67f5bcb5282beeb516
pkgname = xfdesktop

View File

@ -0,0 +1,5 @@
[xfdesktop]
source = "git"
git = "https://gitlab.xfce.org/xfce/xfdesktop.git"
prefix = "xfdesktop-"
exclude_regex = 'xfdesktop-4\.[12][13579]\.[0-9]+'

View File

@ -1,34 +1,38 @@
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
# Maintainer: Evangelos Foutras <foutrelis@archlinux.org>
# Maintainer: Robin Candau <antiz@archlinux.org>
# Contributor: tobias <tobias funnychar archlinux.org>
pkgname=xfdesktop
pkgver=4.18.1
pkgrel=2
pkgrel=3
pkgdesc="Xfce's desktop manager"
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
url="https://docs.xfce.org/xfce/xfdesktop/start"
license=('GPL2')
license=('GPL-2.0-or-later')
groups=('xfce4')
depends=('libxfce4ui' 'libwnck3' 'exo' 'thunar' 'garcon' 'hicolor-icon-theme')
makedepends=('intltool')
source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
sha256sums=('ef9268190c25877e22a9ff5aa31cc8ede120239cb0dfca080c174e7eed4ff756')
makedepends=('git' 'glib2-devel' 'intltool' 'xfce4-dev-tools')
source=("git+https://gitlab.xfce.org/xfce/xfdesktop.git#tag=$pkgname-$pkgver")
sha256sums=('a67cae83863dc61fa994282fdf84f42abbcf2d727d41ae67f5bcb5282beeb516')
build() {
cd $pkgname-$pkgver
./configure \
prepare() {
cd $pkgname
./autogen.sh \
--prefix=/usr \
--sysconfdir=/etc \
--enable-thunarx \
--enable-notifications \
--disable-debug
}
build() {
cd $pkgname
make
}
package() {
cd $pkgname-$pkgver
cd $pkgname
make DESTDIR="$pkgdir" install
}