blob: a9b430d4ae36e8c5f3e6d36c4c349699905bfea4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Contributor: Mike Crute <mike@crute.us>
# Maintainer: Mike Crute <mike@crute.us>
pkgname=tiny-ec2-bootstrap
pkgver=1.2.0
pkgrel=0
pkgdesc="A tiny EC2 instance bootstrapper that uses instance metadata"
url="https://github.com/mcrute/tiny-ec2-bootstrap"
arch="noarch"
license="MIT"
options="!check" # no tests provided
depends="openrc e2fsprogs-extra"
source="$pkgname-$pkgver.tar.gz::https://github.com/mcrute/$pkgname/archive/release-$pkgver.tar.gz"
builddir="$srcdir/$pkgname-release-$pkgver"
package() {
cd "$builddir"
make install PREFIX=$pkgdir
}
sha512sums="a653dd56ac7cc887077d83d1e01c6e2b58550548293e848a456b74a45b2d0061ed3a4188e9a4eb3aaf23ee96d22b00f4e0610d044d640e036591dc43b4681a63 tiny-ec2-bootstrap-1.2.0.tar.gz"
|