summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorRadoslaw Mejer2019-08-06 10:30:19 +0200
committerRadoslaw Mejer2019-08-06 10:30:19 +0200
commit7d39280dcf3bc13567b659be006c650d028ee65f (patch)
tree28f9adb291a2b22280fc545e4f10268c2708e069
parent7fd7fbe1e647428fbf6ff1f9a16daac0a69cd261 (diff)
downloadaur-7d39280dcf3bc13567b659be006c650d028ee65f.tar.gz
Fix: license file name
-rw-r--r--.SRCINFO4
-rwxr-xr-xPKGBUILD6
2 files changed, 5 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0056c664fcab..ed47aca52f1f 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,11 +1,11 @@
pkgbase = jd-tool
pkgdesc = JSON diff and patch
pkgver = 1.1
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/josephburnett/jd
arch = x86_64
license = MIT
- source = jd-tool-MIT::https://raw.githubusercontent.com/josephburnett/jd/master/LICENSE
+ source = https://raw.githubusercontent.com/josephburnett/jd/master/LICENSE
sha256sums = 7db445fe94ae6fb0c5ab69a6b47ec38a0e4b6d5a38f9d1493c0d8cb7c8ad2516
source_x86_64 = jd-1.1::https://github.com/josephburnett/jd/releases/download/v1.1/jd
sha256sums_x86_64 = 42694f0a7a4b77a7e76ff88fc4e82be3bcd3d35f277f01967546f05ae598f40f
diff --git a/PKGBUILD b/PKGBUILD
index f40d599b9723..a7692fe29b3c 100755
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,18 +2,18 @@
pkgname=jd-tool
pkgver=1.1
-pkgrel=1
+pkgrel=2
pkgdesc="JSON diff and patch"
arch=(x86_64)
url="https://github.com/josephburnett/jd"
license=(MIT)
depends=()
-source=("$pkgname-MIT::https://raw.githubusercontent.com/josephburnett/jd/master/LICENSE")
+source=("https://raw.githubusercontent.com/josephburnett/jd/master/LICENSE")
source_x86_64=("jd-${pkgver}::https://github.com/josephburnett/jd/releases/download/v${pkgver}/jd")
sha256sums=('7db445fe94ae6fb0c5ab69a6b47ec38a0e4b6d5a38f9d1493c0d8cb7c8ad2516')
sha256sums_x86_64=('42694f0a7a4b77a7e76ff88fc4e82be3bcd3d35f277f01967546f05ae598f40f')
package() {
install -Dm655 ${srcdir}/jd-${pkgver} ${pkgdir}/usr/bin/jd
- install -Dm644 $pkgname-MIT ${pkgdir}/usr/share/licenses/jd/MIT
+ install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/jd/LICENSE
}