* update xfce4-mailwatch-plugin to 1.3.1-3

This commit is contained in:
Alexander Baldeck 2024-11-26 12:04:37 +01:00
parent 112093095c
commit 28d0f81f2a
3 changed files with 31 additions and 16 deletions

View File

@ -1,15 +1,21 @@
pkgbase = xfce4-mailwatch-plugin
pkgdesc = Multi-protocol, multi-mailbox mail watcher for the Xfce4 panel
pkgver = 1.3.1
pkgrel = 2
url = https://docs.xfce.org/panel-plugins/xfce4-mailwatch-plugin
pkgrel = 3
url = https://docs.xfce.org/panel-plugins/xfce4-mailwatch-plugin/start
arch = x86_64
arch = powerpc64le
arch = powerpc64
arch = powerpc
arch = riscv64
groups = xfce4-goodies
license = GPL2
license = GPL-2.0-or-later
makedepends = git
makedepends = intltool
makedepends = xfce4-dev-tools
depends = xfce4-panel
depends = gnutls
source = https://archive.xfce.org/src/panel-plugins/xfce4-mailwatch-plugin/1.3/xfce4-mailwatch-plugin-1.3.1.tar.bz2
sha256sums = 054964e9fe4ca668486400991ce1ea01d07aac7ba235f4b14d4a8f7d9800046a
source = git+https://gitlab.xfce.org/panel-plugins/xfce4-mailwatch-plugin.git#tag=xfce4-mailwatch-plugin-1.3.1
sha256sums = a41cf1bd933df1776618e72a18974b2f9caa90f3cf0f6ba97dfedee4f1b14f70
pkgname = xfce4-mailwatch-plugin

View File

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

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: AndyRTR <andyrtr@archlinux.org>
# Contributor: Suzy Williams <suzanne.williams3@verizon.net>
pkgname=xfce4-mailwatch-plugin
pkgver=1.3.1
pkgrel=2
pkgrel=3
pkgdesc="Multi-protocol, multi-mailbox mail watcher for the Xfce4 panel"
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
url="https://docs.xfce.org/panel-plugins/xfce4-mailwatch-plugin"
license=('GPL2')
url="https://docs.xfce.org/panel-plugins/xfce4-mailwatch-plugin/start"
license=('GPL-2.0-or-later')
groups=('xfce4-goodies')
depends=('xfce4-panel' 'gnutls')
makedepends=('intltool')
source=(https://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
sha256sums=('054964e9fe4ca668486400991ce1ea01d07aac7ba235f4b14d4a8f7d9800046a')
makedepends=('git' 'intltool' 'xfce4-dev-tools')
source=("git+https://gitlab.xfce.org/panel-plugins/xfce4-mailwatch-plugin.git#tag=$pkgname-$pkgver")
sha256sums=('a41cf1bd933df1776618e72a18974b2f9caa90f3cf0f6ba97dfedee4f1b14f70')
build() {
cd $pkgname-$pkgver
./configure \
prepare() {
cd $pkgname
./autogen.sh \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-debug
}
build() {
cd $pkgname
make
}
package() {
cd $pkgname-$pkgver
cd $pkgname
make DESTDIR="$pkgdir" install
}