# Maintainer: Jordan MacDonald pkgname=amp pkgver=0.5.0 pkgrel=1 pkgdesc='A modal text editor for the terminal.' arch=('x86_64') url='https://github.com/jmacdonald/amp' license=('GPL3') depends=('libxcb') makedepends=('rust' 'git' 'python' 'cmake' 'libxcb') source=("https://github.com/jmacdonald/$pkgname/archive/$pkgver.tar.gz") sha512sums=('75f064b475795fdfd62136288a365af71c9b98ece0b26c48854c6dbbcbcc1a2270a30bd7e3d7c1c82763e5394daec4ef6bdf55f8cee21de75338df8df65e0b7b') build() { cd "$pkgname-$pkgver" cargo build --release } package() { cd "$pkgname-$pkgver" install -Dm755 "target/release/amp" "$pkgdir/usr/bin/amp" install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/${pkgname}/LICENSE" }