summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 37ec4cd5416598a7e704815c0bc6dfdd9416bd7c (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
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>

pkgname=libnet-git
pkgver=1.2.r84.g3796862
pkgrel=1
pkgdesc="A portable framework for low-level network packet construction"
arch=('i686' 'x86_64')
url="https://sourceforge.net/projects/libnet-dev/"
license=('BSD')
depends=('glibc')
makedepends=('git')
provides=('libnet')
conflicts=('libnet')
options=('staticlibs')
source=("git+https://github.com/sam-github/libnet.git")
sha256sums=('SKIP')


pkgver() {
  cd "libnet"

  _tag=$(git tag -l --sort -v:refname | sed '/rc[0-9]*/d' | head -n1)
  _rev=$(git rev-list --count $_tag..HEAD)
  _hash=$(git rev-parse --short HEAD)
  printf "%s.r%s.g%s" "$_tag" "$_rev" "$_hash" | sed 's/^v//'
}

build() {
  cd "libnet"

  ./autogen.sh
  ./configure \
    --prefix="/usr"
  make
}

package() {
  cd "libnet"

  make DESTDIR="$pkgdir" install
  install -Dm644 "LICENSE" -t "$pkgdir/usr/share/licenses/libnet"
}