[packages] nzbget update to 0.7.0
[openwrt/svn-archive/archive.git] / net / nzbget / Makefile
1 #
2 # Copyright (C) 2009 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=nzbget
11 PKG_VERSION:=0.7.0
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@SF/nzbget
16 PKG_MD5SUM:=27971846aba75f5e312d80dce7edbc5d
17
18 PKG_FIXUP:=libtool
19
20 include $(INCLUDE_DIR)/package.mk
21
22 TARGET_LDFLAGS+=-Wl,-rpath-link="$(STAGING_DIR)/usr/lib"
23 TARGET_CFLAGS += $(FPIC)
24
25 define Package/nzbget
26 SUBMENU:=NNTP
27 SECTION:=net
28 CATEGORY:=Network
29 DEPENDS:=+libxml2 +libpar2 +libopenssl +libpthread
30 URL:=http://nzbget.sourceforge.net/
31 TITLE:=Binary newsgrabber
32 MAINTAINER:=Artur Wronowski <arteqw@gmail.com>
33 endef
34
35 define Package/nzbget/description
36 A command-line client/server based binary newsgrabber for nzb-files.
37 endef
38
39 CONFIGURE_ARGS += \
40 --disable-static \
41 --disable-nls \
42 --disable-curses \
43 --with-tlslib=OpenSSL \
44 --with-libpar2-includes=$(STAGING_DIR)/usr/include/libpar2 \
45 --with-libpar2-libraries=$(STAGING_DIR)/usr/lib \
46 --with-libsigc-includes=$(STAGING_DIR)/usr/include/sigc++-2.0 \
47 --with-libsigc-libraries=$(STAGING_DIR)/usr/lib \
48 --with-openssl-includes=$(STAGING_DIR)/usr/include \
49 --with-openssl-libraries=$(STAGING_DIR)/usr/lib \
50 , \
51 PKG_CONFIG_PATH="$(STAGING_DIR)/usr/lib/pkgconfig"
52
53 CONFIGURE_VARS += \
54 ac_cv_header_regex_h=no \
55 CPPFLAGS="-I$(STAGING_DIR)/usr/include/libxml2 $$$$CPPFLAGS"
56
57 define Build/Compile
58 $(MAKE) -C $(PKG_BUILD_DIR) \
59 $(TARGET_CONFIGURE_OPTS) \
60 DESTDIR="$(PKG_INSTALL_DIR)" \
61 install all
62 endef
63
64 define Package/nzbget/install
65 $(INSTALL_DIR) $(1)/usr/sbin
66 $(INSTALL_BIN) $(PKG_BUILD_DIR)/nzbget $(1)/usr/sbin/
67 $(INSTALL_DIR) $(1)/etc
68 $(INSTALL_DATA) $(PKG_BUILD_DIR)/nzbget.conf.example $(1)/etc/nzbget.conf
69 endef
70
71 $(eval $(call BuildPackage,nzbget))