diff options
author | Michael Mason <ms13sp@gmail.com> | 2009-03-18 18:46:13 +0000 |
---|---|---|
committer | Michael Mason <ms13sp@gmail.com> | 2009-03-18 18:46:13 +0000 |
commit | 8fe97ac5e09aef5f6a7ce8055241743acc8a8ee9 (patch) | |
tree | 17ff8e809c221a52e14aa30817b82710613a5989 | |
parent | c746a58e0fee8f3cccc01f97f53ab20e5b733c16 (diff) | |
download | aports-8fe97ac5e09aef5f6a7ce8055241743acc8a8ee9.tar.bz2 aports-8fe97ac5e09aef5f6a7ce8055241743acc8a8ee9.tar.xz |
testing/dhcpcd Initial Commit
-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" |