r30.8ba5a0e

Add LICENSE file. The repo's file is LICENCE, but rename it to match
common expectations.
This commit is contained in:
jakob 1970-01-01 19:59:41 +01:00
parent d416d0c32d
commit 2554a4c3bd
2 changed files with 5 additions and 2 deletions

View file

@ -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

View file

@ -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"
}