source: freewrt/package/sipsak/Makefile@ 6fc4520e

freewrt_1_0 freewrt_2_0
Last change on this file since 6fc4520e was c8b93bd, checked in by Waldemar Brodkorb <wbx@…>, 19 years ago

major package Makefile cleanup. remove mostly-clean, add licence header, always use RSTRIP varibale for stripping, rename some init scripts, indent

git-svn-id: svn://www.freewrt.org/trunk/freewrt@600 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 1.8 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:= sipsak
10PKG_VERSION:= 0.9.6
11PKG_RELEASE:= 1
12PKG_MD5SUM:= c4eb8e282902e75f4f040f09ea9d99d5
13
14PKG_SOURCE_URL:= http://download.berlios.de/sipsak/ \
15 http://ftp.iptel.org/pub/sipsak/
16PKG_SOURCE:= $(PKG_NAME)-$(PKG_VERSION).tar.gz
17
18include $(TOPDIR)/mk/package.mk
19
20$(eval $(call PKG_template,SIPSAK,sipsak,$(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 ac_cv_func_malloc_0_nonnull=yes \
29 ./configure \
30 --target=$(GNU_TARGET_NAME) \
31 --host=$(GNU_TARGET_NAME) \
32 --build=$(GNU_HOST_NAME) \
33 --program-prefix="" \
34 --program-suffix="" \
35 --prefix=/usr \
36 --exec-prefix=/usr \
37 --bindir=/usr/bin \
38 --datadir=/usr/share \
39 --includedir=/usr/include \
40 --infodir=/usr/share/info \
41 --libdir=/usr/lib \
42 --libexecdir=/usr/lib \
43 --localstatedir=/var \
44 --mandir=/usr/share/man \
45 --sbindir=/usr/sbin \
46 --sysconfdir=/etc \
47 --enable-largefile \
48 --disable-nls \
49 --enable-shared \
50 --disable-static \
51 --disable-gnutls \
52 );
53 touch $@
54
55$(WRKBUILD)/.built:
56 rm -rf $(WRKINST)
57 mkdir -p $(WRKINST)
58 $(MAKE) -C $(WRKBUILD) \
59 DESTDIR="$(WRKINST)" \
60 all install
61 touch $@
62
63$(IPKG_SIPSAK):
64 install -d -m0755 $(IDIR_SIPSAK)/usr/bin
65 $(CP) $(WRKINST)/usr/bin/sipsak $(IDIR_SIPSAK)/usr/bin/
66 $(RSTRIP) $(IDIR_SIPSAK)
67 $(IPKG_BUILD) $(IDIR_SIPSAK) $(PACKAGE_DIR)
Note: See TracBrowser for help on using the repository browser.