summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4c298e4230d5aa8390952a4cd12e878d1fe43804 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# Maintainer:  dreieck (https://aur.archlinux.org/account/dreieck)
# Contributor: bidulock (https://aur.archlinux.org/account/bidulock)
# Contributor: fnord0 (https://aur.archlinux.org/account/fnord0)

pkgname=voiphopper-git
pkgver=2.04+1kali5.r27.20230409.8542bd8
pkgrel=1
pkgdesc="A security validation tool that tests to see if a PC can mimic the behavior of an IP Phone. It rapidly automates a VLAN Hop into the Voice VLAN."
arch=(
  'i686'
  'x86_64'
)
url="http://voiphopper.sourceforge.net/"
# Maintained fork: https://gitlab.com/kalilinux/packages/voiphopper
license=('GPL-3.0-or-later')
depends=(
  'glibc'
  'libpcap'
)
makedepends=(
  'git'
)
optdepends=()
provides=(
  "voiphopper=${pkgver}"
)
conflicts=(
  "voiphopper"
)
replaces=(
  "voiphopper<=2.04"
)
source=(
  "voiphopper::git+https://gitlab.com/kalilinux/packages/voiphopper.git")
sha256sums=(
  "SKIP"
)

prepare() {
  cd "${srcdir}/voiphopper"

  cat debian/patches/series | while read _patch; do
    printf '%s\n' "    > Applying patch debian/patches/${_patch} ..."
    patch -N -p1 --follow-symlinks -i "debian/patches/${_patch}"
  done

  git log > git.log
}

pkgver() {
  cd "${srcdir}/voiphopper"

  _ver="$(git describe  --tags | sed 's|^kali/||' | sed 's|-g[0-9a-fA-F]*$||' | tr '-' '+')"
  _rev="$(git rev-list --count HEAD)"
  _date="$(git log -1 --date=format:"%Y%m%d" --format="%ad")"
  _hash="$(git rev-parse --short HEAD)"

  if [ -z "${_ver}" ]; then
    error "Version could not be determined."
    return 1
  else
    printf '%s' "${_ver}.r${_rev}.${_date}.${_hash}"
  fi
}

build() {
  cd "${srcdir}/voiphopper"

  ./configure \
    --prefix=/usr \
    --mandir=/usr/share/man \
    --libexecdir=/usr/lib \
    --sbindir=/usr/bin \
    --sysconfdir=/etc

  make
}

package() {
  cd "${srcdir}/voiphopper"

  make DESTDIR="${pkgdir}" install

  #install -d "${pkgdir}/usr/share/voiphopper"
  #install -d "${pkgdir}/usr/share/licenses/voiphopper"
  #install -d "${pkgdir}/usr/bin"

  for _docfile in git.log AUTHORS BUGS ChangeLog INSTALL NEWS README USAGE; do
    install -Dvm644 "${_docfile}" "${pkgdir}/usr/share/voiphopper/${_docfile}" || return 1
  done
  for _licensefile in COPYING LICENSE; do
    install -Dvm644 "${_licensefile}" "${pkgdir}/usr/share/licenses/voiphopper/${_licensefile}"
    ln -svr "${pkgdir}/usr/share/licenses/voiphopper/${_licensefile}" "${pkgdir}/usr/share/voiphopper/${_licensefile}"
  done
}