blob: 418d0714625ef2b431c00a29154d9f6cb04be8a5 (
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.0.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"
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="3075327ad7cf9a2eb26b3c9e98785f542f46ab8ca01125efb6a5bf34fe16a14e346bec0abfe3f09ac99a616eae361f4cbde09f41c65ba5d8fe6fea8c035e2970 tiny-ec2-bootstrap-1.0.0.tar.gz"
|