add PKGBUILD for arch repos

This commit is contained in:
Michael Zhang 2021-07-13 21:18:01 -05:00
parent 07e0f15209
commit 637edf8076
Signed by: michael
GPG key ID: BDA47A31A3C8EE6B
2 changed files with 24 additions and 0 deletions

1
.gitignore vendored
View file

@ -1,3 +1,4 @@
/target
**/*.rs.bk
shiet.*
/v*.tar.gz

23
PKGBUILD Normal file
View file

@ -0,0 +1,23 @@
# Maintainer: Michael Zhang <mail@mzhang.io>
pkgname=leanshot
pkgver=0.5.0
pkgrel=1
pkgdesc='Screen capture for Linux.'
url='https://git.mzhang.io/michael/leanshot'
arch=('any')
license=('MIT')
makedepends=('python3')
depends=('rust' 'libxcb' 'xcb-util-image')
source=("https://git.mzhang.io/michael/${pkgname}/archive/v${pkgver}.tar.gz")
sha256sums=('9883649c13e61ac93b45daf29227bda959566c004fd4f65aef8139e7d6050986')
build() {
cd "${pkgname}"
cargo build --release --locked --all-features --target-dir=target
}
package() {
cd "${pkgname}"
install -Dm 755 target/release/${pkgname} -t ${pkgdir}/usr/bin
}