* update xfce4-eyes-plugin to 4.6.0-3

This commit is contained in:
Alexander Baldeck 2024-11-26 12:04:36 +01:00
parent 3ccd7838fd
commit 1b0ec24e47
3 changed files with 30 additions and 16 deletions

View File

@ -1,16 +1,21 @@
pkgbase = xfce4-eyes-plugin
pkgdesc = A rolling eyes (following mouse pointer) plugin for the Xfce panel
pkgver = 4.6.0
pkgrel = 2
url = https://docs.xfce.org/panel-plugins/xfce4-eyes-plugin
pkgrel = 3
url = https://docs.xfce.org/panel-plugins/xfce4-eyes-plugin/start
arch = x86_64
arch = powerpc64le
arch = powerpc
arch = riscv64
groups = xfce4-goodies
license = GPL2
license = GPL-2.0-or-later
makedepends = git
makedepends = intltool
makedepends = perl-xml-parser
makedepends = xfce4-dev-tools
depends = xfce4-panel
depends = hicolor-icon-theme
source = https://archive.xfce.org/src/panel-plugins/xfce4-eyes-plugin/4.6/xfce4-eyes-plugin-4.6.0.tar.bz2
sha256sums = ad0ff05d88ba393b7c8922f8233edd33fc0a4e8b000b61de1f8f3a10c5ae5324
source = git+https://gitlab.xfce.org/panel-plugins/xfce4-eyes-plugin.git#tag=xfce4-eyes-plugin-4.6.0
sha256sums = 3e87397858ae4b5f6499f13cca28a0f1e6bd9db92b73d50c95fe691721c6c0aa
pkgname = xfce4-eyes-plugin

View File

@ -0,0 +1,5 @@
[xfce4-eyes-plugin]
source = "git"
git = "https://gitlab.xfce.org/panel-plugins/xfce4-eyes-plugin.git"
prefix = "xfce4-eyes-plugin-"
exclude_regex = "4.*|"

View File

@ -1,35 +1,39 @@
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
# Maintainer: Evangelos Foutras <foutrelis@archlinux.org>
# Maintainer: Robin Candau <antiz@archlinux.org>
# Contributor: AndyRTR <andyrtr@archlinux.org>
# Contributor: Aurelien Foret <orelien@chez.com>
pkgname=xfce4-eyes-plugin
pkgver=4.6.0
pkgrel=2
pkgrel=3
pkgdesc="A rolling eyes (following mouse pointer) plugin for the Xfce panel"
arch=(x86_64 powerpc64le powerpc riscv64)
url="https://docs.xfce.org/panel-plugins/xfce4-eyes-plugin"
license=('GPL2')
url="https://docs.xfce.org/panel-plugins/xfce4-eyes-plugin/start"
license=('GPL-2.0-or-later')
groups=('xfce4-goodies')
depends=('xfce4-panel' 'hicolor-icon-theme')
makedepends=('intltool' 'perl-xml-parser')
source=(https://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
sha256sums=('ad0ff05d88ba393b7c8922f8233edd33fc0a4e8b000b61de1f8f3a10c5ae5324')
makedepends=('git' 'intltool' 'perl-xml-parser' 'xfce4-dev-tools')
source=("git+https://gitlab.xfce.org/panel-plugins/xfce4-eyes-plugin.git#tag=$pkgname-$pkgver")
sha256sums=('3e87397858ae4b5f6499f13cca28a0f1e6bd9db92b73d50c95fe691721c6c0aa')
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure \
prepare() {
cd $pkgname
./autogen.sh \
--prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/lib \
--localstatedir=/var \
--disable-static
}
build() {
cd $pkgname
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
cd $pkgname
make DESTDIR="$pkgdir" install
}