Date: Thursday, November 19, 2020 @ 21:01:32 Author: arojas Revision: 757770
archrelease: copy trunk to community-staging-x86_64 Added: libfm-qt/repos/community-staging-x86_64/ libfm-qt/repos/community-staging-x86_64/PKGBUILD (from rev 757769, libfm-qt/trunk/PKGBUILD) ----------+ PKGBUILD | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) Copied: libfm-qt/repos/community-staging-x86_64/PKGBUILD (from rev 757769, libfm-qt/trunk/PKGBUILD) =================================================================== --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2020-11-19 21:01:32 UTC (rev 757770) @@ -0,0 +1,40 @@ +# Maintainer: Jerome Leclanche <jer...@leclan.ch> +# Maintainer: Chih-Hsuan Yen <yan12...@archlinux.org> + +pkgname=libfm-qt +pkgver=0.16.0 +pkgrel=2 +pkgdesc="Core library of PCManFM-Qt (Qt binding for libfm)" +arch=("x86_64") +url="https://github.com/lxqt/$pkgname" +license=("LGPL2.1") +depends=("menu-cache" "libexif" "qt5-x11extras") +makedepends=("lxqt-build-tools") +optdepends=( + "org.freedesktop.secrets: allow to remember mount passwords" +) +provides=("libfm-qt.so") +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" +) +sha512sums=('5de63408a641b0e77cb319952e428aee9cd35db9ec3e6726a8327ebc53f5641cf66b28dbabd96797c64a253b1e41421dbe05dcb9f4bc7941bd92676bbfa9cc84' + 'SKIP') +validpgpkeys=( + "169704C6FB490C6892C7F23C37E0AF1FDA48F373" # Jerome Leclanche <jer...@leclan.ch> + "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3" # Alf Gaida <aga...@siduction.org> + "19DFDF3A579BD509DBB572D8BE793007AD22DF7E" # Pedram Pourang <tsujan2...@gmail.com> +) + + +build() { + cmake -B build -S "$srcdir/$pkgname-$pkgver" \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=None + make -C build +} + +package() { + cd build + make DESTDIR="$pkgdir" install +}