2011-06-13 13:16:08 +00:00
i n c l u d e $( TOPDIR ) / r u l e s . m k
PKG_NAME := libbsd
PKG_VERSION := 0.3.0
PKG_RELEASE := 1
PKG_SOURCE := $( PKG_NAME) -$( PKG_VERSION) .tar.gz
PKG_SOURCE_URL := http://libbsd.freedesktop.org/releases
#PKG_MD5SUM:=d0870f2de55d59c1c8419f36e8fac150
2012-10-19 15:34:28 +00:00
PKG_LICENSE := BSD-4c
PKG_LICENSE_FILES := COPYING
2011-06-13 13:16:08 +00:00
i n c l u d e $( INCLUDE_DIR ) / p a c k a g e . m k
PKG_INSTALL := 1
d e f i n e P a c k a g e / l i b b s d
SECTION:= libs
CATEGORY:= Libraries
2012-11-23 20:02:29 +00:00
DEPENDS:= @!( USE_UCLIBC|| USE_MUSL)
2011-06-13 13:16:08 +00:00
TITLE:= common BSD library
e n d e f
d e f i n e P a c k a g e / l i b b s d / d e s c r i p t i o n
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.
e n d e f
d e f i n e B u i l d / I n s t a l l D e v
$( INSTALL_DIR) \
$( 1) /lib \
$( 1) /usr/include
$( CP) \
$( PKG_INSTALL_DIR) /lib/libbsd.so* \
$( 1) /lib/
$( CP) \
$( PKG_INSTALL_DIR) /usr/include/* \
$( 1) /usr/include/
( cd $( 1) /lib ; ln -s libbsd.so.$( PKG_VERSION) libbsd.so )
e n d e f
d e f i n e P a c k a g e / l i b b s d / i n s t a l l
$( INSTALL_DIR) \
$( 1) /lib
$( CP) \
$( PKG_INSTALL_DIR) /lib/libbsd.so* \
$( 1) /lib/
( cd $( 1) /lib ; ln -s libbsd.so.$( PKG_VERSION) libbsd.so )
e n d e f
$( eval $ ( call BuildPackage ,libbsd ) )