summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6ddc33658cf5f303b6fb1699a091b1a1d70136dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Maintainer: Brian Steffens <briansteffens@gmail.com>
# Maintainer: Lancia Greggori <lanciagreggori@gmail.com>

pkgname=vex
pkgver=0.0.1
pkgrel=2
pkgdesc='Executes all permutations of a shell command with a pattern syntax'
arch=('x86_64')
url="https://github.com/briansteffens/vex"
license=('GPL')
depends=('gcc-libs')
makedepends=('rust' 'cargo')
source=("${pkgname%-*}::git+https://github.com/briansteffens/vex.git")
md5sums=('SKIP')

build() {
	cd "${srcdir}/${pkgname}"
	cargo build --release
}

package() {
	cd "${srcdir}/${pkgname}"
	make DESTDIR="$pkgdir/" install
}