summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 1fdba2d47446d551caf73d6622ef60d8e621ea37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Maintainer: Hoàng Văn Khải <hvksmr1996@gmail.com>

# This file is automatically generated. Do not edit.

pkgname=build-fs-tree-bin
pkgver=0.7.1
source=(build-fs-tree-da0a391a449cf3769faea874ca720860e9727ba5::https://github.com/KSXGitHub/build-fs-tree/releases/download/0.7.1/build-fs-tree-x86_64-unknown-linux-gnu completion.0.7.1.bash::https://github.com/KSXGitHub/build-fs-tree/releases/download/0.7.1/completion.bash completion.0.7.1.fish::https://github.com/KSXGitHub/build-fs-tree/releases/download/0.7.1/completion.fish completion.0.7.1.zsh::https://github.com/KSXGitHub/build-fs-tree/releases/download/0.7.1/completion.zsh https://raw.githubusercontent.com/KSXGitHub/build-fs-tree/0.7.1/README.md https://raw.githubusercontent.com/KSXGitHub/build-fs-tree/0.7.1/LICENSE.md)
_checksum=da0a391a449cf3769faea874ca720860e9727ba5
_completion_checksums=(SKIP SKIP SKIP)
# This PKGBUILD is not a full PKGBUILD
# pkgname, pkgver, source, and sha1sums are to be generated
pkgdesc='Create a filesystem tree from YAML'
pkgrel=1
arch=(x86_64)
license=(MIT)
url='https://github.com/KSXGitHub/build-fs-tree'
provides=(build-fs-tree)
conflicts=(build-fs-tree)
sha1sums=(
  "$_checksum"                  # for the build-fs-tree binary
  "${_completion_checksums[@]}" # for the completion files
  SKIP                          # for the readme file
  SKIP                          # for the license file
)

package() {
  install -Dm755 "build-fs-tree-$_checksum" "$pkgdir/usr/bin/build-fs-tree"
  install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
  install -Dm644 "completion.$pkgver.bash" "$pkgdir/usr/share/bash-completion/completions/build-fs-tree"
  install -Dm644 "completion.$pkgver.fish" "$pkgdir/usr/share/fish/completions/build-fs-tree.fish"
  install -Dm644 "completion.$pkgver.zsh" "$pkgdir/usr/share/zsh/site-functions/_build-fs-tree"
}