summaryrefslogtreecommitdiff
path: root/pcr/ipv6calc
diff options
context:
space:
mode:
authorAurelien Desbrieres <aurelien@hackers.camp>2014-12-19 16:30:52 +0100
committerAurelien Desbrieres <aurelien@hackers.camp>2014-12-19 16:30:52 +0100
commit01c58b467b288ac878cec7854e290337c8799d65 (patch)
treef447d8b6bc99cce31f6e5508c6f8b9af97a4429d /pcr/ipv6calc
parent4582afc1b2ada72997950cb8351895c92a291395 (diff)
Small utility to manipulate, convert and calculate (more than)
Diffstat (limited to 'pcr/ipv6calc')
-rw-r--r--pcr/ipv6calc/PKGBUILD41
1 files changed, 41 insertions, 0 deletions
diff --git a/pcr/ipv6calc/PKGBUILD b/pcr/ipv6calc/PKGBUILD
new file mode 100644
index 000000000..2dd2655ba
--- /dev/null
+++ b/pcr/ipv6calc/PKGBUILD
@@ -0,0 +1,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: