Skip to content
Snippets Groups Projects
Verified Commit 17adb451 authored by Robin Candau's avatar Robin Candau
Browse files

upgpkg: 0.9.6-2 Overall rework of the PKGBUILD

Context: https://archlinux.org/todo/general-xfce-packages-rework/

- Update URL (point to upstream doc webpage for the package)
- Use SPDX identifier for the license
- Switch to a more transparent source (git sources)
- Add nvchecker integration (.nvchecker.toml)
parent ef1060ae
No related branches found
No related tags found
No related merge requests found
pkgbase = xfce4-notifyd
pkgdesc = Notification daemon for the Xfce desktop
pkgver = 0.9.6
pkgrel = 1
pkgrel = 2
url = https://docs.xfce.org/apps/notifyd/start
arch = x86_64
groups = xfce4-goodies
license = GPL2
license = GPL-2.0-or-later
makedepends = git
makedepends = intltool
makedepends = glib2-devel
makedepends = xfce4-panel
......@@ -18,7 +19,7 @@ pkgbase = xfce4-notifyd
depends = libcanberra
depends = hicolor-icon-theme
provides = notification-daemon
source = https://archive.xfce.org/src/apps/xfce4-notifyd/0.9/xfce4-notifyd-0.9.6.tar.bz2
sha256sums = 9e53265cca7d835c31b3c2c0d3ae961704870839ef583dcca3e4cc98ae3d2671
source = git+https://gitlab.xfce.org/apps/xfce4-notifyd.git#tag=xfce4-notifyd-0.9.6
sha256sums = 9b2923742de76258844073d9787b4b99769aac89b939029150e49ef5ac09f402
pkgname = xfce4-notifyd
[xfce4-notifyd]
source = "git"
git = "https://gitlab.xfce.org/apps/xfce4-notifyd.git"
prefix = "xfce4-notifyd-"
# Maintainer: Evangelos Foutras <foutrelis@archlinux.org>
# Maintainer: Robin Candau <antiz@archlinux.org>
# Contributor: tobias <tobias funnychar archlinux.org>
pkgname=xfce4-notifyd
pkgver=0.9.6
pkgrel=1
pkgrel=2
pkgdesc="Notification daemon for the Xfce desktop"
arch=('x86_64')
url="https://docs.xfce.org/apps/notifyd/start"
license=('GPL2')
license=('GPL-2.0-or-later')
groups=('xfce4-goodies')
depends=('libxfce4ui' 'libxfce4util' 'libnotify' 'xfconf' 'sqlite' 'libcanberra'
'hicolor-icon-theme')
makedepends=('intltool' 'glib2-devel' 'xfce4-panel' 'xfce4-dev-tools')
makedepends=('git' 'intltool' 'glib2-devel' 'xfce4-panel' 'xfce4-dev-tools')
provides=('notification-daemon')
source=(https://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
sha256sums=('9e53265cca7d835c31b3c2c0d3ae961704870839ef583dcca3e4cc98ae3d2671')
source=("git+https://gitlab.xfce.org/apps/xfce4-notifyd.git#tag=$pkgname-$pkgver")
sha256sums=('9b2923742de76258844073d9787b4b99769aac89b939029150e49ef5ac09f402')
build() {
cd $pkgname-$pkgver
./configure \
prepare() {
cd $pkgname
./autogen.sh \
--prefix=/usr \
--sysconfdir=/etc \
--disable-debug
}
build() {
cd $pkgname
make
}
package() {
cd $pkgname-$pkgver
cd $pkgname
make DESTDIR="$pkgdir" install
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment