summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a3e7d8af1abec8c5657441eac718ff9b9da9278c (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
25
26
27
28
# Maintainer: Aurélien Ooms <aurelien.ooms@gmail.com>
pkgname=memoize-rust
pkgver=3.0.0
pkgrel=1
epoch=
pkgdesc="Cache executable calls"
arch=(any)
url="https://github.com/make-github-pseudonymous-again/memoize"
license=('AGPL-3.0')
groups=()
depends=('bash' 'coreutils')
makedepends=('git' 'rust')
checkdepends=()
optdepends=()
provides=('memoize')
conflicts=('memoize')
replaces=()
backup=()
options=()
install=
source=("https://github.com/make-github-pseudonymous-again/memoize/archive/v${pkgver}.tar.gz")
noextract=()
md5sums=('SKIP')

package() {
	cd "$srcdir/memoize-$pkgver"
	make DESTDIR="$pkgdir" install-rust
}