Date: Thursday, November 5, 2020 @ 15:00:09 Author: yan12125 Revision: 743159
archrelease: copy trunk to community-staging-any Added: lxqt-themes/repos/community-staging-any/ lxqt-themes/repos/community-staging-any/PKGBUILD (from rev 743158, lxqt-themes/trunk/PKGBUILD) ----------+ PKGBUILD | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) Copied: lxqt-themes/repos/community-staging-any/PKGBUILD (from rev 743158, lxqt-themes/trunk/PKGBUILD) =================================================================== --- community-staging-any/PKGBUILD (rev 0) +++ community-staging-any/PKGBUILD 2020-11-05 15:00:09 UTC (rev 743159) @@ -0,0 +1,39 @@ +# Maintainer: Jerome Leclanche <jer...@leclan.ch> +# Co-Maintainer: Chih-Hsuan Yen <yan12...@gmail.com> + +pkgname=lxqt-themes +pkgver=0.16.0 +pkgrel=1 +pkgdesc="LXQt themes, graphics and icons." +arch=("any") +groups=("lxqt") +url="https://github.com/lxqt/$pkgname" +license=("LGPL2.1") +depends=("hicolor-icon-theme") +makedepends=("lxqt-build-tools") +replaces=("lxqt-common") +source=( + "https://github.com/lxqt/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz" + "https://github.com/lxqt/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc" +) +sha256sums=('ae7bdcc86fcd0d492a24e6deb13a629edb05c4c44ffebe73eb21903bd8fa25eb' + 'SKIP') +validpgpkeys=( + "169704C6FB490C6892C7F23C37E0AF1FDA48F373" # Jerome Leclanche <jer...@leclan.ch> + "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3" # Alf Gaida <aga...@siduction.org> + "19DFDF3A579BD509DBB572D8BE793007AD22DF7E" # Pedram Pourang <tsujan2...@gmail.com> +) + + +build() { + mkdir -p build + cd build + cmake "$srcdir/$pkgname-$pkgver" \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="$pkgdir" install +}