summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonas Malaco2021-02-22 04:25:52 -0300
committerJonas Malaco2021-02-22 04:25:52 -0300
commitb801625f97e8bf26d3d9beafde18a7f8f0973fa6 (patch)
tree5aef3f74cca123d2ca0309ded0de9a2e6d8c1107
parent91ae51a5f8f717119a47dfdd11e38f6f80a06d91 (diff)
downloadaur-flamegraph-git.tar.gz
Add missing licenses
While the different licenses used by the individual scripts do not allow for the entire package to be licensed under a unified set of terms, I think it is reasonable to interpret this as a collection of independent (and independently licensed) scripts. Additionally, when packaged on the end user's machine (as is normally the case with AUR PKGBUILDs), there is no distribution of the package as whole.
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD6
2 files changed, 5 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0727a3e1e096..973a2ab52f3e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,10 +1,12 @@
pkgbase = flamegraph-git
pkgdesc = Stack trace visualizer
pkgver = r316.a258e78
- pkgrel = 2
+ pkgrel = 3
url = http://www.brendangregg.com/FlameGraphs/cpuflamegraphs.html
arch = any
+ license = Apache
license = CDDL
+ license = GPL2
makedepends = git
depends = perl
depends = awk
diff --git a/PKGBUILD b/PKGBUILD
index 86edae6225d1..4999875a06f2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,11 +3,11 @@
pkgname=flamegraph-git
pkgver=r316.a258e78
-pkgrel=2
+pkgrel=3
pkgdesc="Stack trace visualizer"
arch=('any')
url='http://www.brendangregg.com/FlameGraphs/cpuflamegraphs.html'
-license=('CDDL')
+license=('Apache' 'CDDL' 'GPL2')
depends=('perl' 'awk')
makedepends=('git')
provides=('flamegraph')
@@ -29,6 +29,4 @@ package() {
do
install -Dm 755 "${script}" "${pkgdir}/usr/bin/${script%.pl}"
done
-
- install -Dm644 docs/cddl1.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}