Date: Friday, April 16, 2021 @ 14:02:53
Author: yan12125
Revision: 919442
archrelease: copy trunk to community-testing-x86_64
Added:
libsysstat/repos/community-testing-x86_64/
libsysstat/repos/community-testing-x86_64/PKGBUILD
(from rev 919441, libsysstat/trunk/PKGBUILD)
----------+
PKGBUILD | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
Copied: libsysstat/repos/community-testing-x86_64/PKGBUILD (from rev 919441,
libsysstat/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2021-04-16 14:02:53 UTC (rev 919442)
@@ -0,0 +1,36 @@
+# Maintainer: Jerome Leclanche <[email protected]>
+# Co-Maintainer: Chih-Hsuan Yen <[email protected]>
+
+pkgname=libsysstat
+pkgver=0.4.5
+pkgrel=1
+pkgdesc="Library to query system statistics (net, resource usage, ...)"
+arch=("x86_64")
+url="https://github.com/lxqt/$pkgname"
+license=("LGPL2.1")
+depends=("qt5-base")
+makedepends=("lxqt-build-tools")
+source=(
+
"https://github.com/lxqt/libsysstat/releases/download/$pkgver/$pkgname-$pkgver.tar.xz"
+
"https://github.com/lxqt/libsysstat/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc"
+)
+sha512sums=('1b9091b783e32aeb258bef0e7ea070456f577a42fc5052ebf215dccb195f51c34ae7c2e6178e4eaf12200c5155c53699c2dbfe2a1f7c0c35d06c04275455ed09'
+ 'SKIP')
+validpgpkeys=(
+ "169704C6FB490C6892C7F23C37E0AF1FDA48F373" # Jerome Leclanche
<[email protected]>
+ "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3" # Alf Gaida
<[email protected]>
+ "19DFDF3A579BD509DBB572D8BE793007AD22DF7E" # Pedram Pourang
<[email protected]>
+)
+
+build() {
+ mkdir -p build
+ cd build
+ cmake "$srcdir/$pkgname-$pkgver" \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ make
+}
+
+package() {
+ cd build
+ make DESTDIR="$pkgdir" install
+}