aboutsummaryrefslogtreecommitdiffstats
path: root/community/libcoap/APKBUILD
diff options
context:
space:
mode:
authorSören Tempel <soeren+git@soeren-tempel.net>2017-08-13 22:03:41 +0200
committerSören Tempel <soeren+git@soeren-tempel.net>2017-08-13 22:03:41 +0200
commite7d1ffb47731c2ee3cd4bab29dd46c94265e2f96 (patch)
tree500043d4a043b8f65939a81c106491740d8b6873 /community/libcoap/APKBUILD
parent8569731b43ddbc3803f34965bbdeab2322425cde (diff)
Revert "community/libcoap: move from testing"
Diffstat (limited to 'community/libcoap/APKBUILD')
-rw-r--r--community/libcoap/APKBUILD52
1 files changed, 0 insertions, 52 deletions
diff --git a/community/libcoap/APKBUILD b/community/libcoap/APKBUILD
deleted file mode 100644
index 68906089c58..00000000000
--- a/community/libcoap/APKBUILD
+++ /dev/null
@@ -1,52 +0,0 @@
-# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
-# Maintainer: Sören Tempel <soeren+alpine@soeren-tempel.net>
-pkgname=libcoap
-pkgver=4.1.2
-pkgrel=0
-pkgdesc="A CoAP (RFC 7252) implementation"
-url="https://github.com/obgm/libcoap"
-arch="all"
-license="BSD GPL2+"
-depends=""
-depends_dev=""
-makedepends="automake autoconf libtool asciidoc"
-checkdepends="cunit-dev"
-install=""
-subpackages="$pkgname-dev $pkgname-doc"
-source="$pkgname-$pkgver.tar.gz::https://github.com/obgm/$pkgname/archive/v$pkgver.tar.gz"
-builddir="$srcdir/$pkgname-$pkgver"
-
-prepare() {
- default_prepare
-
- cd "$builddir"
- ./autogen.sh
-}
-
-build() {
- cd "$builddir"
- ./configure \
- --build=$CBUILD \
- --host=$CHOST \
- --prefix=/usr \
- --sysconfdir=/etc \
- --mandir=/usr/share/man \
- --localstatedir=/var \
- --enable-tests
- make
-}
-
-check() {
- "$builddir"/tests/testdriver
-}
-
-package() {
- cd "$builddir"
- make DESTDIR="$pkgdir" install
-
- mkdir -p "$pkgdir"/usr/share/doc/$pkgname
- install -m644 CONTRIBUTE AUTHORS ChangeLog NEWS README.md TODO \
- "$pkgdir"/usr/share/doc/$pkgname
-}
-
-sha512sums="151f40cdacddf25bdffe367b4f1e3bf295445eac966db7bcf6692047cd9d5476b726f08c8d1de7dbe4ebe2477162b4df5e6c121e24eac79f9a4041ab2a646be6 libcoap-4.1.2.tar.gz"