diff options
-rw-r--r-- | extra/dhcp/APKBUILD (renamed from testing/dhcp/APKBUILD) | 0 | ||||
-rw-r--r-- | extra/dhcp/dhcp.confd (renamed from testing/dhcp/dhcp.confd) | 0 | ||||
-rw-r--r-- | extra/dhcp/dhcp.initd (renamed from testing/dhcp/dhcp.initd) | 0 | ||||
-rw-r--r-- | testing/dhcpcd/APKBUILD | 27 |
4 files changed, 27 insertions, 0 deletions
diff --git a/testing/dhcp/APKBUILD b/extra/dhcp/APKBUILD index f3d4ec271..f3d4ec271 100644 --- a/testing/dhcp/APKBUILD +++ b/extra/dhcp/APKBUILD diff --git a/testing/dhcp/dhcp.confd b/extra/dhcp/dhcp.confd index df09ec708..df09ec708 100644 --- a/testing/dhcp/dhcp.confd +++ b/extra/dhcp/dhcp.confd diff --git a/testing/dhcp/dhcp.initd b/extra/dhcp/dhcp.initd index cc9727fc7..cc9727fc7 100644 --- a/testing/dhcp/dhcp.initd +++ b/extra/dhcp/dhcp.initd diff --git a/testing/dhcpcd/APKBUILD b/testing/dhcpcd/APKBUILD new file mode 100644 index 000000000..9d00eefc5 --- /dev/null +++ b/testing/dhcpcd/APKBUILD @@ -0,0 +1,27 @@ +# Contributor: Michael Mason <ms13sp@gmail.com> +# Maintainer: +pkgname=dhcpcd +pkgver=4.0.12 +pkgrel=0 +pkgdesc="RFC2131 compliant DHCP client" +url="http://roy.marples.name/projects/dhcpcd/" +license="GPL" +depends="uclibc" +makedepends="" +install= +subpackages="$pkgname-doc" +source="http://roy.marples.name/downloads/dhcpcd/$pkgname-$pkgver.tar.bz2" + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info + make || return 1 + make DESTDIR="$pkgdir" install + +} + +md5sums="595311cb85071b2f11e6ca246a20d5c7 dhcpcd-4.0.12.tar.bz2" |