Date: Saturday, October 29, 2022 @ 17:20:29
Author: arojas
Revision: 1339207
archrelease: copy trunk to community-any
Added:
lxqt-build-tools/repos/community-any/PKGBUILD
(from rev 1339206, lxqt-build-tools/trunk/PKGBUILD)
lxqt-build-tools/repos/community-any/keys/
Deleted:
lxqt-build-tools/repos/community-any/PKGBUILD
----------+
PKGBUILD | 77 ++++++++++++++++++++++++++++++++-----------------------------
1 file changed, 41 insertions(+), 36 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2022-10-29 17:20:19 UTC (rev 1339206)
+++ PKGBUILD 2022-10-29 17:20:29 UTC (rev 1339207)
@@ -1,36 +0,0 @@
-# Maintainer: Jerome Leclanche <[email protected]>
-# Co-Maintainer: Chih-Hsuan Yen <[email protected]>
-
-pkgname=lxqt-build-tools
-pkgver=0.11.0
-pkgrel=1
-pkgdesc="Various packaging tools and scripts for LXQt applications"
-arch=("any")
-url="https://github.com/lxqt/$pkgname"
-license=("LGPL2.1")
-depends=("cmake" "qt5-tools" "git" "perl")
-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=('dd5d49e59f9b0552cb40118eb28a463f630b5de6e626b2910410b54ef3bcc1b9'
- '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
-}
Copied: lxqt-build-tools/repos/community-any/PKGBUILD (from rev 1339206,
lxqt-build-tools/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2022-10-29 17:20:29 UTC (rev 1339207)
@@ -0,0 +1,41 @@
+# Maintainer: Jerome Leclanche <[email protected]>
+# Co-Maintainer: Chih-Hsuan Yen <[email protected]>
+
+pkgname=lxqt-build-tools
+pkgver=0.11.0
+pkgrel=2
+pkgdesc="Various packaging tools and scripts for LXQt applications"
+arch=("any")
+url="https://github.com/lxqt/$pkgname"
+license=("LGPL2.1")
+depends=("cmake" "qt5-tools" "git" "perl")
+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"
+ https://github.com/lxqt/lxqt-build-tools/commit/4991811d.patch
+)
+sha256sums=('dd5d49e59f9b0552cb40118eb28a463f630b5de6e626b2910410b54ef3bcc1b9'
+ 'SKIP'
+ '52d03bd20cc301b9515d0e5ea1fa7a69e648097d577bce3555d858478626d46c')
+validpgpkeys=(
+ "169704C6FB490C6892C7F23C37E0AF1FDA48F373" # Jerome Leclanche
<[email protected]>
+ "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3" # Alf Gaida
<[email protected]>
+ "19DFDF3A579BD509DBB572D8BE793007AD22DF7E" # Pedram Pourang
<[email protected]>
+)
+
+prepare() {
+ patch -d $pkgname-$pkgver -p1 < 4991811d.patch # Fix finding glib2 2.73
+}
+
+build() {
+ mkdir -p build
+ cd build
+ cmake "$srcdir/$pkgname-$pkgver" \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ make
+}
+
+package() {
+ cd build
+ make DESTDIR="$pkgdir" install
+}