Date: Saturday, April 8, 2023 @ 21:00:23 Author: arojas Revision: 1442962
New kstars dependency Added: libxisf/ libxisf/trunk/ libxisf/trunk/PKGBUILD ----------+ PKGBUILD | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) Added: libxisf/trunk/PKGBUILD =================================================================== --- libxisf/trunk/PKGBUILD (rev 0) +++ libxisf/trunk/PKGBUILD 2023-04-08 21:00:23 UTC (rev 1442962) @@ -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 +}
