[arch-commits] Commit in qcustomplot/trunk (PKGBUILD)
David Runge
dvzrv at archlinux.org
Fri Jun 11 18:18:34 UTC 2021
Date: Friday, June 11, 2021 @ 18:18:33
Author: dvzrv
Revision: 962836
upgpkg: qcustomplot 2.1.0-1: Upgrade to 2.1.0.
Add upstream's pre-amalgamated sources, as the release tarballs are now not shipping the amalgamate binary anymore.
Split out the docs to qcustomplot-docs.
Simplify installation using find.
Modified:
qcustomplot/trunk/PKGBUILD
----------+
PKGBUILD | 62 +++++++++++++++++++++++++++++++++++++------------------------
1 file changed, 38 insertions(+), 24 deletions(-)
Modified: PKGBUILD
===================================================================
--- PKGBUILD 2021-06-11 17:49:56 UTC (rev 962835)
+++ PKGBUILD 2021-06-11 18:18:33 UTC (rev 962836)
@@ -1,32 +1,33 @@
-# Maintainer: David Runge <dave at sleepmap.de>
+# Maintainer: David Runge <dvzrv at archlinux.org>
+
_name=QCustomPlot
-pkgname=qcustomplot
-pkgver=2.0.1
-pkgrel=5
+pkgbase=qcustomplot
+pkgname=('qcustomplot' 'qcustomplot-doc')
+pkgver=2.1.0
+pkgrel=1
pkgdesc="Qt C++ widget for plotting and data visualization"
arch=('x86_64')
url="https://www.qcustomplot.com/"
license=('GPL3')
-depends=('qt5-base')
makedepends=('doxygen' 'graphviz' 'qt5-tools')
-provides=('libqcustomplot.so')
-replaces=('qcustomplot-qt5')
-source=("https://gitlab.com/DerManu/${_name}/-/archive/v${pkgver}/${_name}-v${pkgver}.tar.bz2")
-sha512sums=('fb9184d517007b7c280e7122b3c14b6e49bf6b550bf41b95fe6808cc1c66c66dd82383796bfa4f43ce1ff0406e4c53e579ecc0aa2992741c5a45e5469f4bf5e8')
+source=(
+ "${pkgname}-${pkgver}.tar.bz2::https://gitlab.com/DerManu/${_name}/-/archive/v${pkgver}/${_name}-v${pkgver}.tar.bz2"
+ "${pkgname}-${pkgver}-source.tar.gz::https://www.qcustomplot.com/release/${pkgver}fixed/${_name}-source.tar.gz"
+)
+sha512sums=('90dabc3fd6473be59f06dd8ca46d213d12945e1c79c55333e44f3e97ae39b4c359e192d6b52e3d81e90d667702ea6a1dcf49326e5b134d9623a91aa6356b780a'
+ '8b209d386393b616cc99e47f99f5a5bcd2c4923e827d948461bd6cfd15e110f2dfa5981abfed35d65a9cf5aa9e09c8820d038c8c10bcfc6585af61a4ba558c2d')
+b2sums=('1af3a4833a82a01ff2552aaa0cd2f27c52144f375267747d9621219fc80fb2d638000bdf5797d3e561da670c29eccb9aa039dd605ff42f1447d801b2b1408acc'
+ 'cdb6b64e53c26b9ea156329c46fb215048f0076784ab301e39a7e42c2191d459339cbf3ea5e24c517aed9a47d5fda68b401221aaeec072bbf97fd2bf72a0861f')
prepare() {
- mv -v "${_name}-v${pkgver}" "${pkgname}-${pkgver}"
- cd "$pkgname-$pkgver"
- # using amalgamated sources, so we can create shared objects
- ./amalgamate src/*.skeleton
- sed -e 's|qcustomplot.cpp|src/qcustomplot.cpp|g' \
- -e 's|qcustomplot.h|src/qcustomplot.h|g' \
- -i sharedlib/sharedlib-compilation/sharedlib-compilation.pro
- find . -type f -iname "*.gitignore" -delete
+ mv -v "${_name}-v${pkgver}" "${pkgbase}-${pkgver}"
+ cd "${pkgbase}-${pkgver}"
+ # move required amalgameted sources into place
+ mv -v "../${pkgname}-source/"*.{cpp,h} .
}
build() {
- cd "$pkgname-$pkgver"
+ cd "${pkgbase}-${pkgver}"
qmake-qt5 sharedlib/sharedlib-compilation/sharedlib-compilation.pro
make
# create documentation
@@ -37,14 +38,27 @@
-iname "*.qhp" -or -iname "*.map" -or -iname "*.md5" -delete
}
-package() {
- cd "$pkgname-$pkgver"
+package_qcustomplot() {
+ depends=('qt5-base')
+ provides=('libqcustomplot.so')
+ replaces=('qcustomplot-qt5')
+
+ cd "${pkgbase}-${pkgver}"
# there is no install target
- install -vDm 644 "src/${pkgname}.h" -t "${pkgdir}/usr/include/"
+ install -vDm 644 "${pkgname}.h" -t "${pkgdir}/usr/include/"
install -vdm 755 "${pkgdir}/usr/lib/"
cp -av "lib${pkgname}.so"* "${pkgdir}/usr/lib/"
install -vDm 644 changelog.txt -t "${pkgdir}/usr/share/doc/${pkgname}/"
- cp -av examples "${pkgdir}/usr/share/doc/${pkgname}/"
- cp -av documentation/html "${pkgdir}/usr/share/doc/${pkgname}/"
- cp -av documentation/qthelp "${pkgdir}/usr/share/doc/${pkgname}/"
}
+
+package_qcustomplot-doc() {
+ pkgdesc+=" (docs)"
+
+ cd "${pkgbase}-${pkgver}"
+ install -vDm 644 documentation/qthelp/*.qch -t "${pkgdir}/usr/share/doc/qt/"
+ find examples -type f -exec install -vDm 644 {} "${pkgdir}/usr/share/doc/${pkgbase}/"{} \;
+ (
+ cd documentation
+ find html -type f -exec install -vDm 644 {} "${pkgdir}/usr/share/doc/${pkgbase}/"{} \;
+ )
+}
More information about the arch-commits
mailing list