# $FreeWRT$ #- # This file is part of the FreeWRT project. FreeWRT is copyrighted # material, please see the LICENCE file in the top-level directory # or at http://www.freewrt.org/licence for details. include $(TOPDIR)/rules.mk PKG_NAME:= libusb PKG_VERSION:= 0.1.10a PKG_RELEASE:= 1 PKG_MD5SUM:= c6062b29acd2cef414bcc34e0decbdd1 PKG_SOURCE_URL:= @SF/libusb PKG_SOURCE:= $(PKG_NAME)-$(PKG_VERSION).tar.gz include $(TOPDIR)/mk/package.mk $(eval $(call PKG_template,LIBUSB,libusb,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) $(WRKBUILD)/.configured: (cd $(WRKBUILD); rm -rf config.{cache,status} ; \ $(TARGET_CONFIGURE_OPTS) \ CFLAGS="$(TARGET_CFLAGS)" \ CPPFLAGS="-I$(STAGING_DIR)/usr/include" \ LDFLAGS="-L$(STAGING_DIR)/usr/lib" \ ac_cv_c_bigendian=no \ ./configure \ --target=$(GNU_TARGET_NAME) \ --host=$(GNU_TARGET_NAME) \ --build=$(GNU_HOST_NAME) \ --program-prefix="" \ --program-suffix="" \ --prefix=/usr \ --exec-prefix=/usr \ --bindir=/usr/bin \ --datadir=/usr/share \ --includedir=/usr/include \ --infodir=/usr/share/info \ --libdir=/usr/lib \ --libexecdir=/usr/lib \ --localstatedir=/var \ --mandir=/usr/share/man \ --sbindir=/usr/sbin \ --sysconfdir=/etc \ --disable-nls \ --enable-largefile \ --enable-shared \ --enable-static \ ); touch $@ $(WRKBUILD)/.built: rm -rf $(WRKINST) mkdir -p $(WRKINST) $(MAKE) -C $(WRKBUILD) -j1 \ CC=$(TARGET_CC) LD=$(TARGET_CROSS)ld ARCH=$(ARCH) \ DESTDIR="$(WRKINST)" \ all install touch $@ $(IPKG_LIBUSB): install -m0755 -d $(IDIR_LIBUSB)/usr/lib $(CP) $(WRKINST)/usr/lib/libusb*.so.* $(IDIR_LIBUSB)/usr/lib/ $(RSTRIP) $(IDIR_LIBUSB) $(IPKG_BUILD) $(IDIR_LIBUSB) $(PACKAGE_DIR) $(STAGING_DIR)/usr/lib/libusb.so: $(WRKBUILD)/.built mkdir -p $(STAGING_DIR)/usr/bin $(CP) $(WRKINST)/usr/bin/libusb-config $(STAGING_DIR)/usr/bin/ mkdir -p $(STAGING_DIR)/usr/include $(CP) $(WRKINST)/usr/include/usb.h $(STAGING_DIR)/usr/include/ mkdir -p $(STAGING_DIR)/usr/lib $(CP) $(WRKINST)/usr/lib/libusb*.{a,so*} $(STAGING_DIR)/usr/lib/ touch $@ install-dev: $(STAGING_DIR)/usr/lib/libusb.so uninstall-dev: rm -rf \ $(STAGING_DIR)/usr/bin/libusb-config \ $(STAGING_DIR)/usr/include/usb.h \ $(STAGING_DIR)/usr/lib/libusb*.{a,so*} \ compile-targets: install-dev clean-targets: uninstall-dev