summaryrefslogtreecommitdiff
path: root/pcr
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2017-05-24 02:09:56 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2017-05-24 02:09:56 -0500
commitdc841e0294f664b7c90d7ffed5ce9779e91a3d7c (patch)
tree2949821fdf337f0d810441f4e19ea219ada15a37 /pcr
parent3d10b35c84a73eabdf53e3652374583a342b1c81 (diff)
downloadabslibre-dc841e0294f664b7c90d7ffed5ce9779e91a3d7c.tar.gz
abslibre-dc841e0294f664b7c90d7ffed5ce9779e91a3d7c.tar.bz2
abslibre-dc841e0294f664b7c90d7ffed5ce9779e91a3d7c.zip
Removing ipv6calc: This package is in [community] repo
Diffstat (limited to 'pcr')
-rw-r--r--pcr/ipv6calc/PKGBUILD41
1 files changed, 0 insertions, 41 deletions
diff --git a/pcr/ipv6calc/PKGBUILD b/pcr/ipv6calc/PKGBUILD
deleted file mode 100644
index eab50ca00..000000000
--- a/pcr/ipv6calc/PKGBUILD
+++ /dev/null
@@ -1,41 +0,0 @@
-# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>
-pkgname=ipv6calc
-pkgver=0.99.1
-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")
-md5sums=('aa3c0bb7267bc98d50c12f6b5ca4504f')
-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: