mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
18 lines
491 B
Bash
18 lines
491 B
Bash
|
# $Id: PKGBUILD 34291 2009-04-09 01:25:08Z eric $
|
||
|
# Contributor: K. Piche <kpiche@rogers.com>
|
||
|
|
||
|
pkgname=ipcalc
|
||
|
pkgver=0.41
|
||
|
pkgrel=2
|
||
|
pkgdesc="Calculates IP broadcast, network, Cisco wildcard mask, and host ranges"
|
||
|
arch=(i686 x86_64)
|
||
|
url="http://jodies.de/ipcalc"
|
||
|
license=('GPL')
|
||
|
depends=('perl')
|
||
|
source=(http://jodies.de/ipcalc-archive/$pkgname-$pkgver.tar.gz)
|
||
|
md5sums=('fb791e9a5220fc8e624d915e18fc4697')
|
||
|
|
||
|
build() {
|
||
|
install -D -m755 $srcdir/$pkgname-$pkgver/ipcalc $pkgdir/usr/bin/ipcalc
|
||
|
}
|