summaryrefslogtreecommitdiff
path: root/pcr/ipv6calc/PKGBUILD
blob: 2dd2655ba60384cf8a44019e2e08f7afddcdf2ed (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
# Maintainer : Aurelien Desbrieres <aurelien@hackers.camp>

pkgname=ipv6calc
pkgver=0.97.2
pkgrel=1
pkgdesc='Small utility to manipulate, convert and calculate (more than) IPv6 addresses'
url='http://www.deepspace6.net/projects/ipv6calc.html'
license=('GPL2')
source=("ftp://ftp.bieringer.de/pub/linux/IPv6/ipv6calc/ipv6calc-${pkgver}.tar.gz")
arch=('i686' 'x86_64')
checkdepends=('perl-digest-sha1' 'perl-uri')
options=('!buildflags')

prepare() {
  cd "${pkgname}-${pkgver}"

  # Run autotools.
  autoconf
}

build() {
  cd "${pkgname}-${pkgver}"

  # Configure the build.
  ./configure \
    --prefix="${pkgdir}/usr"

  sed -i -e "s#\${prefix}#$pkgdir/usr#g" man/Makefile

  # Build it!
  make
}

package() {
  cd "${pkgname}-${pkgver}"

  # Install the program.
  make install
}

# vim:set ts=2 sw=2 et: