summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 72ee14aa340b91f3ea75b0751e2ad29fd1148cab (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
# Maintainer: Phillip Smith <pkgbuild@phs.id.au>
# Contributor: Valere Monseur <valere.monseur@NO-SPAM.ymail.com>
# http://github.com/fukawi2/aur-packages

pkgname=husk-git
pkgver=20130604
pkgrel=1
pkgdesc="An iptables front-end to allow rules to be expressed in a more flexible, free-form style using language."
arch=('any')
url="https://huskfw.info/"
license=('GPL')
depends=('perl' 'perl-config-inifiles' 'perl-config-simple')
makedepends=('git')
conflicts=('husk')
backup=('etc/husk/addr_groups.conf'
        'etc/husk/husk.conf'
        'etc/husk/interfaces.conf')

_gitroot="git://github.com/fukawi2/husk.git"
_gitname="husk"

build() {
  cd "$srcdir"
  msg "Connecting to GIT server...."

  if [ -d $_gitname ] ; then
    cd $_gitname && git pull origin
    msg "The local files are updated."
  else
    git clone --branch develop $_gitroot $_gitname
  fi

  msg "GIT checkout done or server timeout"
  msg "Starting make..."

  rm -rf "$srcdir/$_gitname-build"
  git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"

  cd "$srcdir/$_gitname-build"
  sed -i Makefile \
      -e 's|/usr/local/|/usr/|g' \
      -e 's|/usr/sbin|/usr/bin|g'
}

package() {
  cd "$srcdir/$_gitname-build"
  make DESTDIR=$pkgdir install
}