blob: dad8b7f416987bddf13a7455d074ecfe57a0ca21 (
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=gitkv
pkgver=1.0.0
pkgrel=1
epoch=
pkgdesc="Easy key-value storage via git"
arch=(any)
url="https://github.com/aureooms/${pkgname}"
license=('AGPL-3.0')
groups=()
depends=('bash' 'coreutils' 'git')
makedepends=('git')
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
source=("https://github.com/aureooms/${pkgname}/archive/v${pkgver}.tar.gz")
noextract=()
md5sums=('SKIP')
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}
|