summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f40ab7e355dee00c0c5d428e8d8901c3626a3366 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: Dusan Baran <work.dusanbaran@gmail.com>

pkgname=tagcat-git
pkgver=698638d
pkgrel=1
pkgdesc="Netcat but using broadcast to find open streams"
arch=('any')
url="https://github.com/dudoslav/tagcat.git"
license=('GPL3')
makedepends=('git' 'gcc')
source=("git+https://github.com/dudoslav/tagcat.git")
sha256sums=('SKIP')

build() {
  cd "$srcdir/tagcat"
  make
}

package() {
  cd "$srcdir/tagcat"
  DESTDIR=$pkgdir make install
}