12345678910111213141516171819202122232425262728293031323334353637 |
- # This file is part of the OpenADK project. OpenADK is copyrighted
- # material, please see the LICENCE file in the top-level directory.
- include ${TOPDIR}/rules.mk
- PKG_NAME:= libupnp
- PKG_VERSION:= 1.6.6
- PKG_RELEASE:= 3
- PKG_MD5SUM:= 8918dcf7428cd119d0c8275765ff2833
- PKG_DESCR:= The Universal Plug and Play (UPnP) SDK library
- PKG_SECTION:= libs
- PKG_BUILDDEP:= autotool
- PKG_DEPENDS:= libpthread
- PKG_URL:= http://pupnp.sourceforge.net/
- PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=pupnp/}
- PKG_OPTS:= dev
- DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
- include ${TOPDIR}/mk/package.mk
- $(eval $(call PKG_template,LIBUPNP,libupnp,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
- AUTOTOOL_STYLE:= autoreconf
- TARGET_CFLAGS:= $(filter-out -flto,$(TARGET_CFLAGS))
- TARGET_CFLAGS+= -fPIC
- CONFIGURE_ARGS+= --disable-samples
- post-build:
- sed -i -e 's#^libdir=.*#libdir=#' \
- ${WRKBUILD}/threadutil/libthreadutil.la
- libupnp-install:
- ${INSTALL_DIR} ${IDIR_LIBUPNP}/usr/lib
- ${CP} ${WRKINST}/usr/lib/lib*.so* ${IDIR_LIBUPNP}/usr/lib
- include ${TOPDIR}/mk/pkg-bottom.mk
|