diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-07-03 00:34:35 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-07-03 00:34:35 +0000 |
commit | 3ce8007ff22e3b3edb74338b0f95f136efb1aa30 (patch) | |
tree | bd28eb6ce2effa38649d855efcaf481da4af8ef8 /package/irssi/Makefile | |
parent | 209e49b5dcf375170ff607fea3115a21bc8877b4 (diff) |
add irssi
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1319 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/irssi/Makefile')
-rw-r--r-- | package/irssi/Makefile | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/package/irssi/Makefile b/package/irssi/Makefile new file mode 100644 index 000000000..fa70e148f --- /dev/null +++ b/package/irssi/Makefile @@ -0,0 +1,70 @@ +# $Id$ + +include $(TOPDIR)/rules.mk + +PKG_NAME:=irssi +PKG_VERSION:=0.8.9 +PKG_RELEASE:=1 + +PKG_SOURCE_URL:=http://irssi.org/files/ +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_MD5SUM:=1df516a770656ff0bec0ab62f9096bf6 +PKG_CAT:=zcat + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) + +include $(TOPDIR)/package/rules.mk + +$(eval $(call PKG_template,IRSSI,irssi,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) + +$(PKG_BUILD_DIR)/.configured: + (cd $(PKG_BUILD_DIR); rm -rf config.cache; \ + $(TARGET_CONFIGURE_OPTS) \ + CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include" \ + ac_cv_c_bigendian=no \ + ac_cv_sizeof_off_t=8 \ + ./configure \ + --target=$(GNU_TARGET_NAME) \ + --host=$(GNU_TARGET_NAME) \ + --build=$(GNU_HOST_NAME) \ + --prefix=/usr \ + --exec-prefix=/usr \ + --bindir=/usr/bin \ + --sbindir=/usr/sbin \ + --libexecdir=/usr/lib \ + --sysconfdir=/etc \ + --datadir=/usr/share \ + --localstatedir=/var \ + --mandir=/usr/man \ + --infodir=/usr/info \ + --program-prefix="" \ + --with-perl=no \ + --with-glib1 \ + --with-gnu-ld \ + --with-textui \ + --without-terminfo \ + --without-bot \ + --without-file-offset-size \ + --without-ssl \ + $(DISABLE_NLS) \ + --disable-ssl \ + --disable-ipv6 \ + --disable-proxy \ + --with-glib-prefix=$(STAGING_DIR)/usr \ + ); + touch $@ + +$(PKG_BUILD_DIR)/.built: + $(MAKE) -C $(PKG_BUILD_DIR) \ + CC=$(TARGET_CC) + touch $@ + +$(IPKG_IRSSI): + mkdir -p $(IDIR_IRSSI)/usr/bin + cp $(PKG_BUILD_DIR)/src/fe-text/$(PKG_NAME) $(IDIR_IRSSI)/usr/bin/ + $(STRIP) $(IDIR_IRSSI)/usr/bin/* + $(IPKG_BUILD) $(IDIR_IRSSI) $(PACKAGE_DIR) + +mostlyclean: + $(MAKE) -C $(PKG_BUILD_DIR) clean + rm -f $(PKG_BUILD_DIR)/.built |