summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: daf1d406cd632b990a75a9164dd7430e2b9a400c (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
# Maintainer: KokaKiwi <kokakiwi+aur@kokakiwi.net>

_pkgname=ImHex-Patterns
pkgname=${_pkgname,,}-git
pkgver=r20.4eff846
pkgrel=1
pkgdesc='Hex patterns, include patterns and other files for the use with the ImHex Hex Editor'
url='https://github.com/WerWolv/ImHex-Patterns'
license=('GPL2')
arch=('any')
makedepends=('git')
source=("${pkgname}::git+${url}.git")
sha256sums=('SKIP')
b2sums=('SKIP')

pkgver() {
  cd "${pkgname}"

  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

package() {
  install -dm0755 "$pkgdir/usr/share/imhex"
  cp -r -t "$pkgdir/usr/share/imhex" \
    "$pkgname"/{constants,includes,magic,patterns,tips,yara}
}