summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD5
2 files changed, 5 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index b21e4efafd58..9e35f06a7cae 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,10 +1,10 @@
pkgbase = hashclash-git
pkgdesc = Project HashClash - MD5 & SHA-1 cryptanalysis
pkgver = r45.c1159e9
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/cr-marcstevens/hashclash
arch = x86_64
- license = GPL
+ license = MIT
makedepends = git
makedepends = boost
depends = boost-libs
diff --git a/PKGBUILD b/PKGBUILD
index b540f1136e5e..e1d778500d2a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -9,11 +9,11 @@
# Maintainer: Your Name <youremail@domain.com>
pkgname=hashclash-git
pkgver=r45.c1159e9
-pkgrel=1
+pkgrel=2
pkgdesc="Project HashClash - MD5 & SHA-1 cryptanalysis "
arch=(x86_64)
url="https://github.com/cr-marcstevens/hashclash"
-license=('GPL')
+license=('MIT')
depends=(boost-libs)
makedepends=('git' 'boost')
provides=("${pkgname%-git}")
@@ -48,4 +48,5 @@ build() {
package() {
cd "$srcdir/${pkgname%-git}"
make DESTDIR="$pkgdir/" install
+ install -D "$srcdir/${pkgname%-git}/LICENSE.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}