mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
29 lines
1.2 KiB
Bash
29 lines
1.2 KiB
Bash
# $Id: PKGBUILD 42756 2009-06-18 19:44:52Z tpowa $
|
|
# Maintainer: dorphell <dorphell@archlinux.org>
|
|
# Contributor: Jose Javier <jojapa@terra.es>
|
|
pkgname=tftp-hpa
|
|
pkgver=5.0
|
|
pkgrel=3
|
|
pkgdesc="Official tftp server"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.kernel.org/pub/software/network/tftp/"
|
|
license=('BSD')
|
|
depends=('tcp_wrappers' 'readline>=6.0.00')
|
|
conflicts=('netkit-tftp')
|
|
backup=('etc/conf.d/tftpd')
|
|
source=(http://www.kernel.org/pub/software/network/tftp/$pkgname-$pkgver.tar.gz tftpd.rc tftpd.conf LICENSE)
|
|
md5sums=('1ae813a94670f0d8c294aafa9f5ecf65' 'a974d02526f19222146c8e3d3b598871'\
|
|
'414a79dc891bced056d99a9bb790fc9e' '6ce21e27b6fdc1a1adf85c81e42aeecf')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --mandir=/usr/share/man || return 1
|
|
make || return 1
|
|
make INSTALLROOT="${pkgdir}" install || return 1
|
|
install -d "${pkgdir}/etc/rc.d"
|
|
install -d "${pkgdir}/var/tftpboot"
|
|
install -m755 "${srcdir}/tftpd.rc" "${pkgdir}/etc/rc.d/tftpd" || return 1
|
|
install -D -m644 "${srcdir}/tftpd.conf" "${pkgdir}/etc/conf.d/tftpd" || return 1
|
|
rm "${pkgdir}/usr/share/man/man8/tftpd.8"
|
|
install -D -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
|
}
|