Commit c58df3cf authored by Seblu's avatar Seblu
Browse files

add netmask package


git-svn-id: https://seblu.net/s/archpkg@74 02741741-5192-46b8-8916-7152b19231d9
parent 42e79829
Loading
Loading
Loading
Loading

netmask/PKGBUILD

0 → 100644
+24 −0
Original line number Diff line number Diff line
# Maintainer: Sebastien Luttringer <seblu+arch@seblu.net>

pkgname=netmask
pkgver=2.3.12
pkgrel=1
pkgdesc='Helps determine network masks'
arch=('i686' 'x86_64')
url='http://packages.qa.debian.org/n/netmask.html'
license=('GPL2')
source=("http://cdn.debian.net/debian/pool/main/n/${pkgname}/${pkgname}_${pkgver}.tar.gz")
md5sums=('802cf8e2a310aaee367bda930b048520')

build() {
  cd "$srcdir/$pkgname-$pkgver"
  ./configure --prefix=$pkgdir/usr
  make
}

package() {
  cd "$srcdir/$pkgname-$pkgver"
  make install
}

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