From 136a17ec3e6e1c1c09675d5b123e4d90bb35d9ce Mon Sep 17 00:00:00 2001 From: Denis 'GNUtoo' Carikli Date: Fri, 3 Jul 2020 18:33:06 +0200 Subject: [PATCH] Package documentation as well Signed-off-by: Denis 'GNUtoo' Carikli --- .SRCINFO | 2 +- PKGBUILD | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index cc13567fdbf5..7abae73a99a0 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = qdl pkgdesc = Tool to communicate with Qualcomm System On a Chip bootroms to install or execute code pkgver = 1.0 - pkgrel = 3 + pkgrel = 4 url = https://github.com/andersson/qdl arch = armv7h arch = i686 diff --git a/PKGBUILD b/PKGBUILD index a7a4382bb35f..269ada8e0adb 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qdl pkgver=1.0 -pkgrel=3 +pkgrel=4 pkgdesc="Tool to communicate with Qualcomm System On a Chip bootroms to install or execute code" arch=('armv7h' 'i686' 'x86_64') url='https://github.com/andersson/qdl' @@ -28,4 +28,7 @@ package(){ install -d "${pkgdir}/usr/share/licenses/${pkgname}/" install LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/" + # Package documentation + install -d "${pkgdir}/usr/share/doc/${pkgname}/" + install README "${pkgdir}/usr/share/doc/${pkgname}/" }