Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1 | # Copyright (C) 2013 Khem Raj <raj.khem@gmail.com> |
| 2 | # Released under the MIT license (see COPYING.MIT for the terms) |
| 3 | |
| 4 | SUMMARY = "Library of utility functions from BSD systems" |
| 5 | DESCRIPTION = "This library provides useful functions commonly found on BSD systems, \ |
| 6 | and lacking on others like GNU systems, thus making it easier to port \ |
| 7 | projects with strong BSD origins, without needing to embed the same \ |
| 8 | code over and over again on each project." |
| 9 | |
| 10 | HOMEPAGE = "http://libbsd.freedesktop.org/wiki/" |
| 11 | # There seems to be more licenses used in the code, I don't think we want to list them all here, complete list: |
| 12 | # OE @ ~/projects/libbsd $ grep ^License: COPYING | sort -u |
| 13 | # License: BSD-2-clause |
| 14 | # License: BSD-2-clause-NetBSD |
| 15 | # License: BSD-2-clause-author |
| 16 | # License: BSD-2-clause-verbatim |
| 17 | # License: BSD-3-clause |
| 18 | # License: BSD-3-clause-author |
| 19 | # License: BSD-3-clause-John-Birrell |
| 20 | # License: BSD-3-clause-Regents |
| 21 | # License: BSD-4-clause-Christopher-G-Demetriou |
| 22 | # License: BSD-4-clause-Niels-Provos |
| 23 | # License: BSD-5-clause-Peter-Wemm |
| 24 | # License: Beerware |
| 25 | # License: Expat |
| 26 | # License: ISC |
| 27 | # License: ISC-Original |
| 28 | # License: public-domain |
| 29 | # License: public-domain-Colin-Plumb |
| 30 | LICENSE = "BSD-4-Clause & ISC & PD" |
| 31 | LIC_FILES_CHKSUM = "file://COPYING;md5=b552602fda69e34c753d26de383f33c5" |
| 32 | SECTION = "libs" |
| 33 | |
| 34 | SRC_URI = " \ |
| 35 | http://libbsd.freedesktop.org/releases/${BPN}-${PV}.tar.xz \ |
| 36 | file://0001-flopen-Add-missing-fcntl.h-include.patch \ |
| 37 | " |
| 38 | |
| 39 | SRC_URI[md5sum] = "a74b80c4143afa032c90226a4518fffe" |
| 40 | SRC_URI[sha256sum] = "56d835742327d69faccd16955a60b6dcf30684a8da518c4eca0ac713b9e0a7a4" |
| 41 | |
| 42 | inherit autotools pkgconfig |
| 43 | |
| 44 | BBCLASSEXTEND = "native nativesdk" |