author | Antonio Rojas
<arojas@archlinux.org> 2019-04-10 16:46:50 UTC |
committer | Antonio Rojas
<arojas@archlinux.org> 2019-04-10 16:46:50 UTC |
parent | 6738f8468818cd1462f6b835a40dd9588c04e3ba |
PKGBUILD | +5 | -3 |
diff --git a/PKGBUILD b/PKGBUILD index 9c43510..471f989 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,13 +4,13 @@ pkgname=grantlee pkgver=5.1.0 -pkgrel=3 +pkgrel=4 pkgdesc="A string template engine based on the Django template system and written in Qt5" arch=(x86_64) -url="http://www.grantlee.org/" +url="https://github.com/steveire/grantlee" license=(LGPL2.1) depends=('qt5-script') -makedepends=(cmake doxygen) +makedepends=(cmake doxygen graphviz) source=("http://downloads.grantlee.org/grantlee-$pkgver.tar.gz"{,.asc}) sha256sums=('ea2e402466c74bb533eee2c7252209ec61cd93a5d236fecd625b4a0eb13a1478' 'SKIP') @@ -26,9 +26,11 @@ build() { -DCMAKE_INSTALL_PREFIX=/usr \ -DBUILD_TESTS=OFF make + make docs } package() { cd build make DESTDIR="$pkgdir" install + install -Dm644 apidox/* -t "$pkgdir"/usr/share/doc/$pkgname }