Fix license

The license looks like a BSD-3-Clause:
https://directory.fsf.org/wiki/License:BSD-3-Clause

It is also packaged now.

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
This commit is contained in:
Denis 'GNUtoo' Carikli 2020-07-03 18:24:18 +02:00
parent 0948fee470
commit 694933893c
No known key found for this signature in database
GPG key ID: 5F5DFCC14177E263
2 changed files with 8 additions and 4 deletions

View file

@ -1,12 +1,12 @@
pkgbase = qdl
pkgdesc = Tool to communicate with Qualcomm System On a Chip bootroms to install or execute code
pkgver = 1.0
pkgrel = 1
pkgrel = 2
url = https://github.com/andersson/qdl
arch = armv7h
arch = i686
arch = x86_64
license = GPL3
license = BSD
depends = libxml2
source = https://github.com/andersson/qdl/archive/v1.0.tar.gz
sha512sums = 561b6ffaf26d063f107a0769b41d0ed02f1f6c4656b6284e653e8baf69b2f34d5f6051e54bb45ab55c028bb8bfa9b4e5218b796dbdb7ab7686576168b1b11d77

View file

@ -6,11 +6,11 @@
pkgname=qdl
pkgver=1.0
pkgrel=1
pkgrel=2
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'
license=('GPL3')
license=('BSD')
depends=('libxml2')
source=("https://github.com/andersson/${pkgname}/archive/v${pkgver}.tar.gz")
sha512sums=('561b6ffaf26d063f107a0769b41d0ed02f1f6c4656b6284e653e8baf69b2f34d5f6051e54bb45ab55c028bb8bfa9b4e5218b796dbdb7ab7686576168b1b11d77')
@ -23,4 +23,8 @@ build(){
package(){
cd "${srcdir}/${pkgname}-${pkgver}"
make prefix="/usr" DESTDIR="${pkgdir}" install
# install license
install -d "${pkgdir}/share/licenses/${pkgname}/"
install LICENSE "${pkgdir}/share/licenses/${pkgname}/"
}