summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3ee32e2ecefc6897e9d18fb6343325115e40e53e (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
# Maintainer: Steven Honeyman <stevenhoneyman (-at-) gmail.com>
# Contributor: Pierre Bourdon <delroth@gmail.com>

pkgname=netboot
pkgver=20100119
pkgrel=3
pkgdesc="a simple PXE-compatible DHCP and TFTP server"
arch=(i686 x86_64)
url="http://brokestream.com/netboot.html"
license=(BSD)
depends=(glibc)
makedepends=(gcc)
source=(http://brokestream.com/netboot.c)
install=netboot.install

build() {
     cd $srcdir
     gcc -o netboot netboot.c || return 1
}

package() {
     cd $srcdir
     install -D -m755 netboot "$pkgdir/usr/bin/netboot" || return 1
}


md5sums=('e702d33f4fbae8836218b0753348fd02')