diff options
| author | Yigit Sever | 2023-06-08 01:21:58 +0300 |
|---|---|---|
| committer | Yigit Sever | 2023-06-08 01:21:58 +0300 |
| commit | fae52d5ac4a5b7ddcbc6fad0b4cfaaf16c8f9b81 (patch) | |
| tree | 2b3537df993861e0e07bd59a55345dd450dafde8 /ouch-bin/PKGBUILD | |
| parent | 309498e610a10b8df8eccc41dab6560a3d95c9c7 (diff) | |
| download | packages-fae52d5ac4a5b7ddcbc6fad0b4cfaaf16c8f9b81.tar.gz packages-fae52d5ac4a5b7ddcbc6fad0b4cfaaf16c8f9b81.tar.bz2 packages-fae52d5ac4a5b7ddcbc6fad0b4cfaaf16c8f9b81.zip | |
Deleted package: ouch-bin
Diffstat (limited to 'ouch-bin/PKGBUILD')
| -rw-r--r-- | ouch-bin/PKGBUILD | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/ouch-bin/PKGBUILD b/ouch-bin/PKGBUILD deleted file mode 100644 index 53a278a..0000000 --- a/ouch-bin/PKGBUILD +++ /dev/null | |||
| @@ -1,40 +0,0 @@ | |||
| 1 | # Maintainer: Yigit Sever <yigit at yigitsever dot com> | ||
| 2 | |||
| 3 | pkgname=ouch-bin | ||
| 4 | _pkgname=${pkgname%-bin} | ||
| 5 | pkgver=0.4.1 | ||
| 6 | pkgrel=1 | ||
| 7 | pkgdesc="Painless compression and decompression in the terminal (binary release)" | ||
| 8 | arch=('x86_64') | ||
| 9 | url="https://github.com/ouch-org/ouch" | ||
| 10 | license=('MIT') | ||
| 11 | provides=(${_pkgname}) | ||
| 12 | conflicts=(${_pkgname} ${_pkgname}-git) | ||
| 13 | source=("${_pkgname}-${pkgver}.tar.gz::${url}/releases/download/${pkgver}/ouch-x86_64-unknown-linux-gnu.tar.gz") | ||
| 14 | sha256sums=('b27902df86aa2b4df28e1d53214af1d5391beabd4c1cbee850d80c2168329d62') | ||
| 15 | |||
| 16 | package() { | ||
| 17 | # Binary releaes is archived in a folder with a generic name, it is not ideal | ||
| 18 | # (e.g. aur helpers will complain about name clashes) | ||
| 19 | # So we fix it | ||
| 20 | cd "${srcdir}" | ||
| 21 | mkdir "${_pkgname}-${pkgver}" | ||
| 22 | mv "${srcdir}/ouch-x86_64-unknown-linux-gnu/"* "${_pkgname}-${pkgver}" | ||
| 23 | rmdir ouch-x86_64-unknown-linux-gnu | ||
| 24 | |||
| 25 | cd "${srcdir}/${_pkgname}-${pkgver}" | ||
| 26 | |||
| 27 | install -Dm0755 -t "${pkgdir}/usr/bin" "${_pkgname}" | ||
| 28 | install -Dm0644 LICENSE "$pkgdir/usr/share/licenses/${_pkgname}/LICENSE" | ||
| 29 | |||
| 30 | # install manpages | ||
| 31 | install -Dm0644 "man/${_pkgname}.1" -t "${pkgdir}/usr/share/man/man1" | ||
| 32 | install -Dm0644 "man/${_pkgname}-compress.1" -t "${pkgdir}/usr/share/man/man1" | ||
| 33 | install -Dm0644 "man/${_pkgname}-decompress.1" -t "${pkgdir}/usr/share/man/man1" | ||
| 34 | install -Dm0644 "man/${_pkgname}-list.1" -t "${pkgdir}/usr/share/man/man1" | ||
| 35 | |||
| 36 | # install shell completions | ||
| 37 | install -Dm0644 "completions/${_pkgname}.bash" "${pkgdir}/usr/share/bash-completion/completions/${_pkgname}" | ||
| 38 | install -Dm0644 "completions/${_pkgname}.fish" "${pkgdir}/usr/share/fish/vendor_completions.d/${_pkgname}.fish" | ||
| 39 | install -Dm0644 "completions/_${_pkgname}" "${pkgdir}/usr/share/zsh/site-functions/_${_pkgname}" | ||
| 40 | } | ||
