diff options
| author | Peter Korsgaard <jacmet@sunsite.dk> | 2013-06-02 16:33:05 +0200 |
|---|---|---|
| committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-06-02 16:33:05 +0200 |
| commit | 1ba51d2fbddd5650f8caea0a327b9031238ad843 (patch) | |
| tree | 05d5df7b487e76597b34cb0b1fc9543525169a62 /package/libbsd | |
| parent | 0c94aa549cc8cf483bc8c3443a2b1f772d5d180b (diff) | |
| parent | fb2f3d58bde6aaac12b62eeb16492c93329b8713 (diff) | |
| download | buildroot-novena-1ba51d2fbddd5650f8caea0a327b9031238ad843.tar.gz buildroot-novena-1ba51d2fbddd5650f8caea0a327b9031238ad843.zip | |
Merge branch 'next'
Diffstat (limited to 'package/libbsd')
| -rw-r--r-- | package/libbsd/Config.in | 10 | ||||
| -rw-r--r-- | package/libbsd/libbsd.mk | 21 |
2 files changed, 31 insertions, 0 deletions
diff --git a/package/libbsd/Config.in b/package/libbsd/Config.in new file mode 100644 index 000000000..0ed9dac9a --- /dev/null +++ b/package/libbsd/Config.in @@ -0,0 +1,10 @@ +config BR2_PACKAGE_LIBBSD + bool "libbsd" + help + This library provides useful functions commonly found on BSD + systems, and lacking on others like GNU systems, thus making + it easier to port projects with strong BSD origins, without + needing to embed the same code over and over again on each + project. + + http://libbsd.freedesktop.org/ diff --git a/package/libbsd/libbsd.mk b/package/libbsd/libbsd.mk new file mode 100644 index 000000000..3af1002d6 --- /dev/null +++ b/package/libbsd/libbsd.mk @@ -0,0 +1,21 @@ +############################################################# +# +# libbsd +# +############################################################# + +LIBBSD_VERSION = 0.4.2 +LIBBSD_SOURCE = libbsd-$(LIBBSD_VERSION).tar.gz +LIBBSD_SITE = http://libbsd.freedesktop.org/releases +LIBBSD_LICENSE = BSD-3c MIT +LIBBSD_LICENSE_FILES = LICENSE + +# man-pages are BSD-4c, so that license only matters +# if doc is kept in the target rootfs +ifeq ($(BR2_HAVE_DOCUMENTATION),y) +LIBBSD_LICENSE += (libraries), BSD-4c (documentation) +endif + +LIBBSD_INSTALL_STAGING = YES + +$(eval $(autotools-package)) |
