Date: Thursday, November 5, 2020 @ 15:04:30
Author: yan12125
Revision: 743171
archrelease: copy trunk to community-staging-x86_64
Added:
qtermwidget/repos/community-staging-x86_64/
qtermwidget/repos/community-staging-x86_64/PKGBUILD
(from rev 743170, qtermwidget/trunk/PKGBUILD)
----------+
PKGBUILD | 40 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
Copied: qtermwidget/repos/community-staging-x86_64/PKGBUILD (from rev 743170,
qtermwidget/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2020-11-05 15:04:30 UTC (rev 743171)
@@ -0,0 +1,40 @@
+# Maintainer: Jerome Leclanche <[email protected]>
+# Maintainer: Chih-Hsuan Yen <[email protected]>
+
+pkgname=qtermwidget
+pkgver=0.16.0
+pkgrel=1
+pkgdesc="A terminal widget for Qt, used by QTerminal"
+arch=("x86_64")
+url="https://github.com/lxqt/$pkgname"
+# Yep, it's messy when you're talking about licenses
+license=("LGPL" "custom:BSD" "custom:Public Domain")
+depends=("qt5-base")
+makedepends=("lxqt-build-tools")
+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=('739fcc97581d1fca441914d67808ea5eb2a051300488be319bb7afe30a01fdf2'
+ '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
+ install -Dm644 "$srcdir/$pkgname-$pkgver/README.md" -t
"$pkgdir"/usr/share/licenses/$pkgname
+}