# Maintainer: Matt Harrison # Maintained at: https://github.com/matt-h/aur-pkgbuilds pkgname='glint' pkgdesc='A tool for creating git commits in the commitlint style' pkgver='0.1.6' pkgrel='1' arch=('x86_64') url='https://github.com/brigand/glint' license=('MIT') depends=('gcc-libs') makedepends=('rust') checkdepends=('rust') source=("${pkgname}-${pkgver}.tar.gz::https://github.com/brigand/glint/archive/${pkgver}.tar.gz") sha256sums=('59c9a3abcc7bdfc16a28d07a919399cfda768cbcbde740ab2dee34db50640397') build() { cd "$pkgname-$pkgver" cargo build --release --locked } check() { cd "$pkgname-$pkgver" cargo test --locked } package() { cd "$pkgname-$pkgver" install -Dm755 "target/release/glint" "$pkgdir/usr/bin/$pkgname" install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" }