Date: Tuesday, November 15, 2022 @ 21:35:12
Author: arojas
Revision: 1349020
archrelease: copy trunk to community-staging-x86_64
Added:
kstars/repos/community-staging-x86_64/
kstars/repos/community-staging-x86_64/PKGBUILD
(from rev 1349019, kstars/trunk/PKGBUILD)
kstars/repos/community-staging-x86_64/keys/
----------+
PKGBUILD | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
Copied: kstars/repos/community-staging-x86_64/PKGBUILD (from rev 1349019,
kstars/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2022-11-15 21:35:12 UTC (rev 1349020)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan <[email protected]>
+# Maintainer: Antonio Rojas <[email protected]>
+# Contributor: Andrea Scarpino <[email protected]>
+
+pkgname=kstars
+pkgver=3.6.1
+pkgrel=2
+epoch=1
+pkgdesc='Desktop Planetarium'
+url='https://kde.org/applications/education/kstars/'
+arch=(x86_64)
+license=(GPL LGPL FDL)
+depends=(stellarsolver libraw kplotting knewstuff knotifyconfig qt5-datavis3d
libindi qt5-quickcontrols qt5-websockets qtkeychain
+ breeze-icons hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools eigen)
+optdepends=('xplanet: XPlanet support')
+source=(https://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('5966ed7eabc6775dfe6b8d73f3f32395c865969ba12d7d3c9eed793a56147ae2'
+ 'SKIP')
+validpgpkeys=(259D9FCEE9175351965633696D9CE2AEE028C4F3) # Jasem Mutlaq
<[email protected]>
+
+build() {
+ cmake -B build -S $pkgname-$pkgver \
+ -DBUILD_TESTING=OFF \
+ -DCMAKE_C_FLAGS="$CFLAGS -ffat-lto-objects" \
+ -DCMAKE_CXX_FLAGS="$CXXFLAGS -ffat-lto-objects"
+ cmake --build build
+}
+
+package() {
+ DESTDIR="$pkgdir" cmake --install build
+}