Date: Saturday, April 8, 2023 @ 21:00:39
Author: arojas
Revision: 1442963
archrelease: copy trunk to community-x86_64
Added:
libxisf/repos/
libxisf/repos/community-x86_64/
libxisf/repos/community-x86_64/PKGBUILD
(from rev 1442962, libxisf/trunk/PKGBUILD)
----------+
PKGBUILD | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
Copied: libxisf/repos/community-x86_64/PKGBUILD (from rev 1442962,
libxisf/trunk/PKGBUILD)
===================================================================
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2023-04-08 21:00:39 UTC (rev 1442963)
@@ -0,0 +1,23 @@
+# Maintainer: Antonio Rojas <[email protected]>
+
+pkgname=libxisf
+pkgver=0.2.2
+pkgrel=1
+pkgdesc='Library to load and write XISF format from PixInsight'
+url='https://gitea.nouspiro.space/nou/libXISF'
+license=(GPL3)
+arch=(x86_64)
+depends=(gcc-libs)
+makedepends=(cmake)
+source=($pkgname-$pkgver.tar.gz::https://gitea.nouspiro.space/nou/libXISF/archive/v$pkgver.tar.gz)
+sha256sums=('201e02184c4eeefb5c73f7771ed5f390e39da5a2646f9caed32b3886b6294afb')
+
+build() {
+ cmake -B build -S $pkgname \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ cmake --build build
+}
+
+package() {
+ DESTDIR="$pkgdir" cmake --install build
+}