From 2554a4c3bd2f50d0aadaa2e51cc414065b3988fa Mon Sep 17 00:00:00 2001 From: jakob Date: Thu, 1 Jan 1970 19:59:41 +0100 Subject: [PATCH] r30.8ba5a0e Add LICENSE file. The repo's file is LICENCE, but rename it to match common expectations. --- .SRCINFO | 3 ++- PKGBUILD | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 583c2058bdb1..4416e8b5dcf6 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,9 +1,10 @@ pkgbase = git-backdate-git pkgdesc = Backdate a commit or range of commit to a date or range of dates - pkgver = r24.240cd0c + pkgver = r30.8ba5a0e pkgrel = 1 url = https://github.com/rixx/git-backdate arch = any + license = custom depends = python depends = sed source = git+https://github.com/rixx/git-backdate.git diff --git a/PKGBUILD b/PKGBUILD index f1e9882a5e88..d27a2f45c256 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,11 +2,12 @@ _pkgname=git-backdate pkgname=${_pkgname}-git -pkgver=r24.240cd0c +pkgver=r30.8ba5a0e pkgrel=1 pkgdesc="Backdate a commit or range of commit to a date or range of dates" arch=(any) url="https://github.com/rixx/git-backdate" +license=(custom) depends=(python sed) source=("git+https://github.com/rixx/${_pkgname}.git") sha256sums=('SKIP') @@ -23,4 +24,5 @@ pkgver() { package() { cd "$_pkgname" install -Dm755 git-backdate "$pkgdir/usr/bin/git-backdate" + install -Dm644 LICENCE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" }