source: freewrt/package/popt/Makefile@ 18c227bd

freewrt_2_0
Last change on this file since 18c227bd was 9f572e3, checked in by Dirk Nehring <dnehring@…>, 19 years ago

drop --enable-largefile from makefiles. 2GB should be enough in most cases

git-svn-id: svn://www.freewrt.org/branches/freewrt_1_0@975 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:= popt
10PKG_VERSION:= 1.7
11PKG_RELEASE:= 4
12PKG_MD5SUM:= 5988e7aeb0ae4dac8d83561265984cc9
13
14PKG_SOURCE_URL:= ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.1.x/
15PKG_SOURCE:= $(PKG_NAME)-$(PKG_VERSION).tar.gz
16
17include $(TOPDIR)/mk/package.mk
18
19$(eval $(call PKG_template,LIBPOPT,libpopt,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
20
21$(WRKBUILD)/.configured:
22 (cd $(WRKBUILD); rm -rf config.{cache,status} ; \
23 $(TARGET_CONFIGURE_OPTS) \
24 CFLAGS="$(TARGET_CFLAGS)" \
25 CPPFLAGS="-I$(STAGING_DIR)/usr/include" \
26 LDFLAGS="-L$(STAGING_DIR)/usr/lib" \
27 ./configure \
28 --target=$(GNU_TARGET_NAME) \
29 --host=$(GNU_TARGET_NAME) \
30 --build=$(GNU_HOST_NAME) \
31 --program-prefix="" \
32 --program-suffix="" \
33 --prefix=/usr \
34 --exec-prefix=/usr \
35 --bindir=/usr/bin \
36 --datadir=/usr/share \
37 --includedir=/usr/include \
38 --infodir=/usr/share/info \
39 --libdir=/usr/lib \
40 --libexecdir=/usr/lib \
41 --localstatedir=/var \
42 --mandir=/usr/share/man \
43 --sbindir=/usr/sbin \
44 --sysconfdir=/etc \
45 --disable-nls \
46 --enable-shared \
47 --enable-static \
48 );
49 touch $@
50
51$(WRKBUILD)/.built:
52 rm -rf $(WRKINST)
53 mkdir -p $(WRKINST)
54 $(MAKE) -C $(WRKBUILD) \
55 DESTDIR="$(WRKINST)" \
56 all install
57 touch $@
58
59$(IPKG_LIBPOPT):
60 install -d -m0755 $(IDIR_LIBPOPT)/usr/lib
61 $(CP) $(WRKINST)/usr/lib/libpopt.so.* $(IDIR_LIBPOPT)/usr/lib/
62 $(RSTRIP) $(IDIR_LIBPOPT)
63 $(IPKG_BUILD) $(IDIR_LIBPOPT) $(PACKAGE_DIR)
64
65$(STAGING_DIR)/usr/lib/libpopt.so: $(WRKBUILD)/.built
66 mkdir -p $(STAGING_DIR)/usr/include
67 $(CP) $(WRKINST)/usr/include/popt.h $(STAGING_DIR)/usr/include/
68 mkdir -p $(STAGING_DIR)/usr/lib
69 $(CP) $(WRKINST)/usr/lib/libpopt.{a,so*} $(STAGING_DIR)/usr/lib/
70 touch $(STAGING_DIR)/usr/lib/libpopt.so
71
72install-dev: $(STAGING_DIR)/usr/lib/libpopt.so
73
74uninstall-dev:
75 rm -rf \
76 $(STAGING_DIR)/usr/include/popt.h \
77 $(STAGING_DIR)/usr/lib/libpopt.{a,so*} \
78
79compile-targets: install-dev
80clean-targets: uninstall-dev
Note: See TracBrowser for help on using the repository browser.