summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 527fbe2ec80e966d5462c19933f9e552122ad1ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Maintainer: Kunal Singh <kunalsin9h@gmail.com>
pkgname='git-commit' # name of the pacakge
pkgver=0.2.1 # version of the application
pkgrel=2 # version of the backage
#epoch=1 # the newest package, next time set epoch to 2 (this is to ensure that this is the latest package, it default pkg ver comparsion not working)
pkgdesc="Git commit simulator using Conventional Commits conventions"
arch=('x86_64')
url="https://github.com/KunalSin9h/git-commit.git"
license=('MIT')
depends=('gum') # Runtime dependency
makedepends=('git') # build time dependency
source=(git+https://github.com/KunalSin9h/git-commit.git)
md5sums=('SKIP')

package() {
	cd "$pkgname"
    install -Dm755 "commit" "$pkgdir/usr/bin/commit"
    install -Dm644 "README.md" "$pkgdir/usr/share/doc/$pkgname"
    install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}