source: freewrt/package/libusb/Makefile@ 621d5d2

freewrt_2_0
Last change on this file since 621d5d2 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.2 KB
RevLine 
[c8b93bd]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.
[475ad56]6
7include $(TOPDIR)/rules.mk
8
[c8b93bd]9PKG_NAME:= libusb
10PKG_VERSION:= 0.1.10a
11PKG_RELEASE:= 1
12PKG_MD5SUM:= c6062b29acd2cef414bcc34e0decbdd1
[475ad56]13
[c8b93bd]14PKG_SOURCE_URL:= @SF/libusb
15PKG_SOURCE:= $(PKG_NAME)-$(PKG_VERSION).tar.gz
[475ad56]16
[c8b93bd]17include $(TOPDIR)/mk/package.mk
[475ad56]18
19$(eval $(call PKG_template,LIBUSB,libusb,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
20
[d419478]21$(WRKBUILD)/.configured:
22 (cd $(WRKBUILD); rm -rf config.{cache,status} ; \
[475ad56]23 $(TARGET_CONFIGURE_OPTS) \
24 CFLAGS="$(TARGET_CFLAGS)" \
25 CPPFLAGS="-I$(STAGING_DIR)/usr/include" \
26 LDFLAGS="-L$(STAGING_DIR)/usr/lib" \
27 ac_cv_c_bigendian=no \
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 \
[c57fbc9]46 --disable-nls \
[475ad56]47 --enable-shared \
48 --enable-static \
49 );
50 touch $@
51
[d419478]52$(WRKBUILD)/.built:
53 rm -rf $(WRKINST)
54 mkdir -p $(WRKINST)
55 $(MAKE) -C $(WRKBUILD) -j1 \
[475ad56]56 CC=$(TARGET_CC) LD=$(TARGET_CROSS)ld ARCH=$(ARCH) \
[d419478]57 DESTDIR="$(WRKINST)" \
[475ad56]58 all install
59 touch $@
60
61$(IPKG_LIBUSB):
62 install -m0755 -d $(IDIR_LIBUSB)/usr/lib
[d419478]63 $(CP) $(WRKINST)/usr/lib/libusb*.so.* $(IDIR_LIBUSB)/usr/lib/
[475ad56]64 $(RSTRIP) $(IDIR_LIBUSB)
65 $(IPKG_BUILD) $(IDIR_LIBUSB) $(PACKAGE_DIR)
66
[d419478]67$(STAGING_DIR)/usr/lib/libusb.so: $(WRKBUILD)/.built
[475ad56]68 mkdir -p $(STAGING_DIR)/usr/bin
[d419478]69 $(CP) $(WRKINST)/usr/bin/libusb-config $(STAGING_DIR)/usr/bin/
[475ad56]70 mkdir -p $(STAGING_DIR)/usr/include
[d419478]71 $(CP) $(WRKINST)/usr/include/usb.h $(STAGING_DIR)/usr/include/
[475ad56]72 mkdir -p $(STAGING_DIR)/usr/lib
[d419478]73 $(CP) $(WRKINST)/usr/lib/libusb*.{a,so*} $(STAGING_DIR)/usr/lib/
[475ad56]74 touch $@
75
76install-dev: $(STAGING_DIR)/usr/lib/libusb.so
77
78uninstall-dev:
79 rm -rf \
80 $(STAGING_DIR)/usr/bin/libusb-config \
81 $(STAGING_DIR)/usr/include/usb.h \
82 $(STAGING_DIR)/usr/lib/libusb*.{a,so*} \
83
84compile-targets: install-dev
85clean-targets: uninstall-dev
Note: See TracBrowser for help on using the repository browser.