diff options
author | Claudia Pellegrino | 2022-07-01 16:28:42 +0200 |
---|---|---|
committer | Claudia Pellegrino | 2022-07-01 16:28:42 +0200 |
commit | db19779a9012d0b485a1fc92afbafbb860e49a85 (patch) | |
tree | 8eedbef11f10e8f6f47c9e39fa7d436186ed62a0 | |
parent | c4b28dd7df0f1f53e5199943dad0ffb23ab11cfd (diff) | |
download | aur-db19779a9012d0b485a1fc92afbafbb860e49a85.tar.gz |
znapzupport v0.1.3
-rw-r--r-- | .SRCINFO | 9 | ||||
-rw-r--r-- | .gitignore | 6 | ||||
-rw-r--r-- | PKGBUILD | 12 |
3 files changed, 16 insertions, 11 deletions
@@ -1,6 +1,6 @@ pkgbase = znapzupport pkgdesc = Collection of CLI helpers for ZnapZend - pkgver = 0.1.1 + pkgver = 0.1.3 pkgrel = 1 url = https://github.com/claui/znapzupport arch = any @@ -11,10 +11,9 @@ pkgbase = znapzupport depends = sudo depends = zfs optdepends = znapzend - noextract = znapzupport-0.1.1.tar.gz + noextract = znapzupport-0.1.3.tar.gz options = !strip - source = znapzupport-0.1.1.tar.gz::https://github.com/claui/znapzupport/archive/v0.1.1.tar.gz - sha512sums = 62479379efe76f99faab51ebfab67cc0f3c3639d8f3dd6e6020796bb5adaf8b7f2083c06dd2757051df65debc7eff4125d4b6fa0d41255ef3309080ea5938607 + source = znapzupport-0.1.3.tar.gz::https://github.com/claui/znapzupport/archive/v0.1.3.tar.gz + sha512sums = 184015648ba068dc02e93c57f3c3430905474742623779a81d6cb945dfc1e27285ceb8e45e09a057df2c868661aa487e82bd0363471ab34e95ee7b906080ba63 pkgname = znapzupport - diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000000..9a3601c418f --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +/.vscode/ +/src +/pkg +*.log +*.pkg.* +*.tar.* @@ -2,7 +2,7 @@ # Contributor: pkgname=znapzupport -pkgver=0.1.1 +pkgver=0.1.3 pkgrel=1 pkgdesc='Collection of CLI helpers for ZnapZend' arch=('any') @@ -17,7 +17,7 @@ source=( ) sha512sums=( - '62479379efe76f99faab51ebfab67cc0f3c3639d8f3dd6e6020796bb5adaf8b7f2083c06dd2757051df65debc7eff4125d4b6fa0d41255ef3309080ea5938607' + '184015648ba068dc02e93c57f3c3430905474742623779a81d6cb945dfc1e27285ceb8e45e09a057df2c868661aa487e82bd0363471ab34e95ee7b906080ba63' ) noextract=("${pkgname}-${pkgver}.tar.gz") @@ -39,22 +39,22 @@ build() { } package() { - msg2 'Installing the license' + echo >&2 'Installing the license' install -D -m 644 -t "${pkgdir}/usr/share/licenses/${pkgname}" \ "${srcdir}/${pkgname}-${pkgver}/LICENSE.md" - msg2 'Installing package files' + echo >&2 'Installing package files' mkdir -p "${pkgdir}/usr/lib/${pkgname}" cp -r --preserve=mode -t "${pkgdir}/usr/lib/${pkgname}" \ "${srcdir}/${pkgname}-${pkgver}/"{bin,libexec} - msg2 'Installing binstubs' + echo >&2 'Installing binstubs' find "${srcdir}/${pkgname}-${pkgver}/bin" \ -mindepth 1 \ -exec bash -c "install -D -m 755 -T \"${srcdir}\"/binstub` ` \"${pkgdir}\"/usr/bin/\$(basename '{}')" ';' - msg2 'Installing documentation' + echo >&2 'Installing documentation' install -D -m 644 -t "${pkgdir}/usr/share/doc/${pkgname}" \ "${srcdir}/${pkgname}-${pkgver}/README.md" } |