diff options
author | wbx <wbx@hydrogenium.(none)> | 2009-05-17 14:41:34 +0200 |
---|---|---|
committer | wbx <wbx@hydrogenium.(none)> | 2009-05-17 14:41:34 +0200 |
commit | 219a6dab8995aad9ac4860cc1a84d6f3509a03a4 (patch) | |
tree | b9c0f3c43aebba2fcfef777592d0add39f2072f4 /package/weechat/Makefile |
Initial import
Diffstat (limited to 'package/weechat/Makefile')
-rw-r--r-- | package/weechat/Makefile | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/package/weechat/Makefile b/package/weechat/Makefile new file mode 100644 index 000000000..1e1a5023a --- /dev/null +++ b/package/weechat/Makefile @@ -0,0 +1,49 @@ +# $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:= weechat +PKG_VERSION:= 0.1.8 +PKG_RELEASE:= 2 +PKG_MD5SUM:= 73d6bc211ac32c597f0d278506480a20 + +MASTER_SITES:= http://weechat.flashtux.org/download/ + +include ${TOPDIR}/mk/package.mk + +PKG_DEPEND:= libncurses libiconv + +ifeq (${ADK_COMPILE_WEECHAT_WITH_TLS},y) +ENABLE_TLS:= --with-libgnutls-prefix=${STAGING_DIR}/usr +PKG_DEPEND+= gnutls +else +ENABLE_TLS:= --disable-gnutls +endif + +ifneq (${ADK_COMPILE_WEECHAT_WITH_LUA},y) +DISABLE_LUA:= --disable-lua +else +PKG_DEPEND+= liblua +endif + +$(eval $(call PKG_template,WEECHAT,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${ARCH},${PKG_DEPEND})) + +CONFIGURE_STYLE:= gnu +CONFIGURE_ARGS+= ${ENABLE_TLS} \ + --with-debug=0 \ + --disable-perl \ + --disable-python \ + --disable-ruby \ + --with-libiconv-prefix='${STAGING_DIR}/usr' \ + ${DISABLE_LUA} +BUILD_STYLE:= auto +INSTALL_STYLE:= auto + +post-install: + ${INSTALL_DIR} ${IDIR_WEECHAT}/usr/bin/ + ${INSTALL_BIN} ${WRKINST}/usr/bin/weechat-curses ${IDIR_WEECHAT}/usr/bin/ + +include ${TOPDIR}/mk/pkg-bottom.mk |