diff options
author | Ranadeep Biswas | 2021-12-28 15:38:00 +0100 |
---|---|---|
committer | Ranadeep Biswas | 2021-12-28 15:38:00 +0100 |
commit | 77970137184db3f214bdec315eac00478ca0f804 (patch) | |
tree | dfa637905eeb0286c6e5841a609ed96d021881b3 | |
download | aur-77970137184db3f214bdec315eac00478ca0f804.tar.gz |
v1.1.2
-rw-r--r-- | .SRCINFO | 11 | ||||
-rw-r--r-- | PKGBUILD | 22 |
2 files changed, 33 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..545a48bddee0 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,11 @@ +pkgbase = bech32-cli-bin + pkgdesc = Haskell implementation of the Bech32 address format (BIP 0173) + pkgver = 1.1.2 + pkgrel = 1 + url = https://github.com/input-output-hk/bech32 + arch = x86_64 + provides = bech32-cli + source = https://github.com/input-output-hk/bech32/releases/download/v1.1.2/bech32-v1.1.2-linux64.tar.gz + sha256sums = f6301a7451dda76535f5015302bbe3bf5b5ae6d4456520d5db4298f5158985b2 + +pkgname = bech32-cli-bin diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..fd45b49ccd15 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,22 @@ +# Maintainer: Ranadeep B < mail at rnbguy dot at > + +_reponame=bech32 +_organization=input-output-hk +_pkgname=${_reponame}-cli +pkgname=${_pkgname}-bin +pkgver=1.1.2 +pkgrel=1 +pkgdesc="Haskell implementation of the Bech32 address format (BIP 0173)" +arch=('x86_64') +url="https://github.com/${_organization}/${_reponame}" +provides=("${_pkgname}") +source=( + "https://github.com/${_organization}/${_reponame}/releases/download/v${pkgver}/${_reponame}-v${pkgver}-linux64.tar.gz" +) +sha256sums=( + 'f6301a7451dda76535f5015302bbe3bf5b5ae6d4456520d5db4298f5158985b2' +) + +package() { + install -Dt "$pkgdir/usr/local/bin" "$_reponame" +} |