mirror of
https://github.com/archlinux/aur.git
synced 2026-02-08 13:12:02 +01:00
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:
parent
0948fee470
commit
694933893c
2 changed files with 8 additions and 4 deletions
4
.SRCINFO
4
.SRCINFO
|
|
@ -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
|
||||
|
|
|
|||
8
PKGBUILD
8
PKGBUILD
|
|
@ -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}/"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue