blob: 05f47bd1c402f7e660450ec6f59cd8b109ed99b2 (
plain)
1 # Description: An enhanced version of the BSD tftp client/server
2 # URL: http://freshmeat.net/projects/tftp-hpa/
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Packager: Matt Housh, jaeger at morpheus dot net
5
6 name=tftp-hpa
7 version=5.2
8 release=1
9 source=(http://www.kernel.org/pub/software/network/tftp/tftp-hpa/$name-$version.tar.xz)
10
11 build () {
12 cd $name-$version
13 ./configure --prefix=/usr \
14 --mandir=/usr/man
15 make
16 make INSTALLROOT=$PKG install
17 }
|