diff options
author | Mike Crute <mike@crute.us> | 2017-12-27 05:01:37 +0000 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2017-12-28 21:13:57 +0000 |
commit | b2940d5db6b69d0b46bd3311b8f651eecfe4d571 (patch) | |
tree | e934f68bb68f2e713c7738c7d0e983c345eeac69 /main | |
parent | ca160f891f0f5a2cd2ff60b3a663a48f7d38dd4f (diff) | |
download | aports-b2940d5db6b69d0b46bd3311b8f651eecfe4d571.tar.bz2 aports-b2940d5db6b69d0b46bd3311b8f651eecfe4d571.tar.xz |
testing/tiny-ec2-bootstrap: move to main
Diffstat (limited to 'main')
-rw-r--r-- | main/tiny-ec2-bootstrap/APKBUILD | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/main/tiny-ec2-bootstrap/APKBUILD b/main/tiny-ec2-bootstrap/APKBUILD new file mode 100644 index 0000000000..418d071462 --- /dev/null +++ b/main/tiny-ec2-bootstrap/APKBUILD @@ -0,0 +1,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" |