diff options
author | Francesco Colista <fcolista@alpinelinux.org> | 2019-03-16 20:04:13 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2019-03-16 20:04:13 +0000 |
commit | 5aa89791ccb8b50ee85c72e72162503719f10b7f (patch) | |
tree | 9143235cf4baf2cc18ee4ffecb56f2101b33e8bd /testing/wsmancli | |
parent | 3a985146ed7267e032ca94539c0a2b48301dbf05 (diff) | |
download | aports-5aa89791ccb8b50ee85c72e72162503719f10b7f.tar.bz2 aports-5aa89791ccb8b50ee85c72e72162503719f10b7f.tar.xz |
testing/wsmancli: new aport
Diffstat (limited to 'testing/wsmancli')
-rw-r--r-- | testing/wsmancli/APKBUILD | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/testing/wsmancli/APKBUILD b/testing/wsmancli/APKBUILD new file mode 100644 index 0000000000..c5356fa4e5 --- /dev/null +++ b/testing/wsmancli/APKBUILD @@ -0,0 +1,37 @@ +# Contributor: Francesco Colista <fcolista@alpinelinux.org> +# Maintainer: Francesco Colista <fcolista@alpinelinux.org> +pkgname=wsmancli +pkgver=2.6.0 +pkgrel=0 +pkgdesc="Openwsman command line client" +url="https://openwsman.github.io/" +arch="all" +license="custom BSD-3-Clause" +makedepends="libtool autoconf automake cunit-dev openwsman-dev" +subpackages="$pkgname-doc" +source="$pkgname-$pkgver.tar.gz::https://github.com/Openwsman/$pkgname/archive/v$pkgver.tar.gz" +builddir="$srcdir/$pkgname-$pkgver" + +prepare() { + default_prepare + cd "$builddir" + ./bootstrap +} + +build() { + cd "$builddir" + ./configure --prefix=/usr + make +} + +check() { + cd "$builddir" + make check +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +sha512sums="40f69dfefd5cfc9c1d137c5c58bd0e84e1bb460ecb6770e1c56b023477f7521769f04e041682686d267796477704c7465d437f6fdb4068268a51d1136d5c8a56 wsmancli-2.6.0.tar.gz" |