diff options
Diffstat (limited to 'package/ustl/Makefile')
-rw-r--r-- | package/ustl/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/package/ustl/Makefile b/package/ustl/Makefile new file mode 100644 index 000000000..0a6cae1e9 --- /dev/null +++ b/package/ustl/Makefile @@ -0,0 +1,33 @@ +# $Id$ +#- +# 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:= ustl +PKG_VERSION:= 0.8 +PKG_RELEASE:= 1 +PKG_MD5SUM:= dd59483c327f1bd1356273bc5ae4dde0 + +MASTER_SITES:= ${MASTER_SITE_SOURCEFORGE:=ustl/} +DISTFILES:= ${PKG_NAME}-${PKG_VERSION}-0.tar.bz2 + +include ${TOPDIR}/mk/package.mk + +$(eval $(call PKG_template,USTL,ustl,${PKG_VERSION}-${PKG_RELEASE},${ARCH})) + +BUILD_STYLE:= auto +INSTALL_STYLE:= auto +XAKE_FLAGS+= CROSS="${TARGET_CROSS}" \ + OPTFLAGS="${TARGET_CFLAGS}" + +do-configure: + ${CP} ./files/config.h ${WRKBUILD}/ + ${CP} ./files/Common.mk ${WRKBUILD}/ + +post-install: + ${INSTALL_DIR} ${IDIR_USTL}/usr/lib + ${CP} ${WRKINST}/usr/lib/libustl.so* ${IDIR_USTL}/usr/lib/ + +include ${TOPDIR}/mk/pkg-bottom.mk |