diff options
author | Peter Mattern | 2024-04-23 00:55:55 +0200 |
---|---|---|
committer | Peter Mattern | 2024-04-23 17:50:18 +0200 |
commit | 206360f722651c7f8307c367a66ec6ee57c3f55b (patch) | |
tree | 9f523653fb071f1c8b23be8147ad28736382dc92 | |
parent | 2c69f8edea12472d4aece28b17b4d4af7215a443 (diff) | |
download | aur-206360f722651c7f8307c367a66ec6ee57c3f55b.tar.gz |
Miscellaneous updates
* upstream URL (homepage)
* license string
* dependencies
* improve pkgver
-rw-r--r-- | .SRCINFO | 11 | ||||
-rw-r--r-- | PKGBUILD | 13 |
2 files changed, 12 insertions, 12 deletions
@@ -1,16 +1,15 @@ pkgbase = lxqt-menu-data-git pkgdesc = LXQt menu files - pkgver = 1.4.0 + pkgver = 2.0.0 pkgrel = 1 - url = https://github.com/lxqt/lxqt-menu-data + url = https://lxqt-project.org arch = any - license = GPL - license = LGPL + license = LGPL-2.1-only makedepends = git makedepends = cmake + makedepends = qt6-tools makedepends = lxqt-build-tools-git - makedepends = qt5-tools - provides = lxqt-menu-data=1.4.0 + provides = lxqt-menu-data=2.0.0 conflicts = lxqt-menu-data source = git+https://github.com/lxqt/lxqt-menu-data.git sha256sums = SKIP @@ -1,22 +1,23 @@ # Maintainer: Chih-Hsuan Yen <base64_decode("eXUzYWN0eHQydHR0ZmlteEBjaHllbi5jYwo=")> +# Co-Maintainer: Peter Mattern <pmattern at arcor dot de> _pkgname=lxqt-menu-data pkgname=$_pkgname-git -pkgver=1.4.0 +pkgver=2.0.0 pkgrel=1 pkgdesc='LXQt menu files' arch=(any) -url='https://github.com/lxqt/lxqt-menu-data' -license=('GPL' 'LGPL') -makedepends=(git cmake lxqt-build-tools-git qt5-tools) +url='https://lxqt-project.org' +license=("LGPL-2.1-only") +makedepends=(git cmake qt6-tools lxqt-build-tools-git) provides=("$_pkgname=$pkgver") conflicts=("$_pkgname") -source=('git+https://github.com/lxqt/lxqt-menu-data.git') +source=("git+https://github.com/lxqt/${_pkgname}.git") sha256sums=('SKIP') pkgver() { cd lxqt-menu-data - git describe --always | sed 's:-:.:g' + git describe --always | sed 's:-:.r:;s:-:.:' } build() { |