change cp to $(CP)
[openwrt/staging/dedeckeh.git] / openwrt / package / icecast / Makefile
1 # $Id$
2
3 include $(TOPDIR)/rules.mk
4
5 PKG_NAME:=icecast
6 PKG_VERSION:=2.3.0
7 PKG_RELEASE:=1
8 PKG_MD5SUM:=35256fbc4a93571662af2ed18fbbfcc5
9
10 PKG_SOURCE_URL:=http://downloads.us.xiph.org/releases/icecast/
11 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
12 PKG_CAT:=zcat
13
14 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
15 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
16
17 include $(TOPDIR)/package/rules.mk
18
19 $(eval $(call PKG_template,ICECAST,icecast,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
20
21 $(PKG_BUILD_DIR)/.configured:
22 (cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
23 $(TARGET_CONFIGURE_OPTS) \
24 CFLAGS="$(TARGET_CFLAGS)" \
25 CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include -I$(STAGING_DIR)/usr/include/libxml2 " \
26 LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
27 PKG_CONFIG_PATH="$(STAGING_DIR)/usr/lib/pkgconfig" \
28 ./configure \
29 --target=$(GNU_TARGET_NAME) \
30 --host=$(GNU_TARGET_NAME) \
31 --build=$(GNU_HOST_NAME) \
32 --program-prefix="" \
33 --program-suffix="" \
34 --prefix=/usr \
35 --exec-prefix=/usr \
36 --bindir=/usr/bin \
37 --datadir=/usr/share \
38 --includedir=/usr/include \
39 --infodir=/usr/share/info \
40 --libdir=/usr/lib \
41 --libexecdir=/usr/lib \
42 --localstatedir=/var \
43 --mandir=/usr/share/man \
44 --sbindir=/usr/sbin \
45 --sysconfdir=/etc \
46 $(DISABLE_LARGEFILE) \
47 $(DISABLE_NLS) \
48 --enable-shared \
49 --disable-static \
50 --disable-rpath \
51 --with-gnu-ld \
52 --enable-yp \
53 --with-curl="yes" \
54 --with-curl-config="$(STAGING_DIR)/usr/bin/curl-config" \
55 --with-ogg="$(STAGING_DIR)/usr" \
56 --with-speex="no" \
57 --with-theora="no" \
58 --with-vorbis="$(STAGING_DIR)/usr" \
59 --with-xslt-config="$(STAGING_DIR)/usr/bin/xslt-config" \
60 )
61 touch $@
62
63 $(PKG_BUILD_DIR)/.built:
64 rm -rf $(PKG_INSTALL_DIR)
65 mkdir -p $(PKG_INSTALL_DIR)
66 $(MAKE) -C $(PKG_BUILD_DIR) \
67 DESTDIR="$(PKG_INSTALL_DIR)" \
68 all install
69 touch $@
70
71 $(IPKG_ICECAST):
72 install -d -m0755 $(IDIR_ICECAST)/etc
73 $(CP) $(PKG_INSTALL_DIR)/etc/icecast.xml $(IDIR_ICECAST)/etc/
74 install -d -m0755 $(IDIR_ICECAST)/usr/bin
75 $(CP) $(PKG_INSTALL_DIR)/usr/bin/icecast $(IDIR_ICECAST)/usr/bin/
76 install -d -m0755 $(IDIR_ICECAST)/usr/share/icecast
77 $(CP) $(PKG_INSTALL_DIR)/usr/share/icecast/admin $(IDIR_ICECAST)/usr/share/icecast/
78 $(CP) $(PKG_INSTALL_DIR)/usr/share/icecast/web $(IDIR_ICECAST)/usr/share/icecast/
79 $(RSTRIP) $(IDIR_ICECAST)
80 $(IPKG_BUILD) $(IDIR_ICECAST) $(PACKAGE_DIR)