source: freewrt/package/gmediaserver/Makefile@ b68978d

freewrt_2_0
Last change on this file since b68978d was 65d016f, checked in by Waldemar Brodkorb <wbx@…>, 19 years ago

fix half of the init scripts not conforming to
our standard. thx very much ulmen!

git-svn-id: svn://www.freewrt.org/branches/freewrt_1_0@1000 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 2.1 KB
Line 
1# $FreeWRT$
2#-
3# This file is part of the FreeWRT project. FreeWRT is copyrighted
4# material, please see the LICENCE file in the top-level directory
5# or at http://www.freewrt.org/licence for details.
6
7include $(TOPDIR)/rules.mk
8
9PKG_NAME:= gmediaserver
10PKG_VERSION:= 0.9.0
11PKG_RELEASE:= 2
12PKG_MD5SUM:= 93de0f8dcbc1353a0d0dd5b5ab4b3142
13PKG_INIT:= 60
14
15PKG_SOURCE_URL:= http://savannah.nongnu.org/download/gmediaserver/
16PKG_SOURCE:= $(PKG_NAME)-$(PKG_VERSION).tar.gz
17
18include $(TOPDIR)/mk/package.mk
19
20$(eval $(call PKG_template,GMEDIASERVER,gmediaserver,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
21
22$(WRKBUILD)/.configured:
23 (cd $(WRKBUILD); rm -rf config.{cache,status} ; \
24 $(TARGET_CONFIGURE_OPTS) \
25 CFLAGS="$(TARGET_CFLAGS)" \
26 CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
27 LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
28 LIBS=" -lixml -lthreadutil -lupnp -luClibc++ -lz" \
29 am_cv_func_iconv=no \
30 ./configure \
31 --target=$(GNU_TARGET_NAME) \
32 --host=$(GNU_TARGET_NAME) \
33 --build=$(GNU_HOST_NAME) \
34 --program-prefix="" \
35 --program-suffix="" \
36 --prefix=/usr \
37 --exec-prefix=/usr \
38 --bindir=/usr/bin \
39 --datadir=/usr/share \
40 --includedir=/usr/include \
41 --infodir=/usr/share/info \
42 --libdir=/usr/lib \
43 --libexecdir=/usr/lib \
44 --localstatedir=/var \
45 --mandir=/usr/share/man \
46 --sbindir=/usr/sbin \
47 --sysconfdir=/etc \
48 --disable-nls \
49 --enable-shared \
50 --disable-static \
51 --disable-rpath \
52 --with-gnu-ld \
53 --with-id3lib="$(STAGING_DIR)/usr" \
54 --with-libupnp="$(STAGING_DIR)/usr" \
55 )
56 touch $@
57
58$(WRKBUILD)/.built:
59 rm -rf $(WRKINST)
60 mkdir -p $(WRKINST)
61 $(MAKE) -C $(WRKBUILD) \
62 DESTDIR="$(WRKINST)" \
63 all install
64 touch $@
65
66$(IPKG_GMEDIASERVER):
67 install -m0755 -d $(IDIR_GMEDIASERVER)/etc/init.d
68 install -m0755 ./files/gmediaserver.init \
69 $(IDIR_GMEDIASERVER)/etc/init.d/S$(PKG_INIT)gmediaserver
70 install -m0755 -d $(IDIR_GMEDIASERVER)/usr/sbin
71 $(CP) $(WRKINST)/usr/bin/gmediaserver $(IDIR_GMEDIASERVER)/usr/sbin/
72 $(RSTRIP) $(IDIR_GMEDIASERVER)
73 $(IPKG_BUILD) $(IDIR_GMEDIASERVER) $(PACKAGE_DIR)
Note: See TracBrowser for help on using the repository browser.