[arch-commits] Commit in libpano13/trunk (PKGBUILD)

Bruno Pagani archange at gemini.archlinux.org
Sat Jan 22 22:22:29 UTC 2022


    Date: Saturday, January 22, 2022 @ 22:22:28
  Author: archange
Revision: 1113494

upgpkg: libpano13 2.9.21-1

Modified:
  libpano13/trunk/PKGBUILD

----------+
 PKGBUILD |   26 ++++++++++++--------------
 1 file changed, 12 insertions(+), 14 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2022-01-22 22:13:19 UTC (rev 1113493)
+++ PKGBUILD	2022-01-22 22:22:28 UTC (rev 1113494)
@@ -3,29 +3,27 @@
 # Contributor: Tobias Kieslich <tobias at justdreams.de>
 
 pkgname=libpano13
-pkgver=2.9.20
+pkgver=2.9.21
 pkgrel=1
 pkgdesc="Basic library to calculate panoramical pictures - core functions of the panotools"
 arch=(x86_64)
 url="http://panotools.sourceforge.net/"
 license=(GPL2)
-depends=(libpng libtiff)
+depends=(libjpeg libpng libtiff suitesparse)
+makedepends=(cmake)
 source=(https://downloads.sourceforge.net/sourceforge/panotools/${pkgname}-${pkgver}.tar.gz)
-sha256sums=(3b532836c37b8cd75cd2227fd9207f7aca3fdcbbd1cce3b9749f056a10229b89)
+sha256sums=('79e5a1452199305e2961462720ef5941152779c127c5b96fc340d2492e633590')
 
-prepare() {
-  cd ${pkgname}-${pkgver}
-  autoreconf -fvi
-}
-
 build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --mandir=/usr/share/man
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
+  cmake -B build -S ${pkgname}-${pkgver} \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DUSE_SPARSE_LEVMAR=ON
+  make -C build
 }
 
 package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
+  make -C build DESTDIR="${pkgdir}" install
+  mkdir "${pkgdir}"/usr/share/doc
+  mv "${pkgdir}"/usr/share/{pano13/doc,doc/pano13}
+  rmdir "${pkgdir}"/usr/share/pano13
 }



More information about the arch-commits mailing list