mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-22 13:36:15 +02:00
libphysfs: installs properly
This commit is contained in:
parent
a20cbc71b2
commit
85fc04c08b
@ -1,3 +1,7 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=libphysfs
|
PKG_NAME:=libphysfs
|
||||||
@ -42,14 +46,26 @@ define Build/Configure
|
|||||||
TARGET_CPPFLAGS="$(TARGET_CPPFLAGS)" \
|
TARGET_CPPFLAGS="$(TARGET_CPPFLAGS)" \
|
||||||
TARGET_CFLAGS="$(TARGET_CFLAGS)" \
|
TARGET_CFLAGS="$(TARGET_CFLAGS)" \
|
||||||
TARGET_LDFLAGS="$(TARGET_LDFLAGS)" \
|
TARGET_LDFLAGS="$(TARGET_LDFLAGS)" \
|
||||||
cmake $(PKG_BUILD_DIR));$
|
cmake .);$
|
||||||
$(call Build/Compile/Default)$
|
$(call Build/Compile/Default)$
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Build/Compile
|
||||||
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||||
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
||||||
|
all install
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Build/InstallDev
|
||||||
|
mkdir -p $(1)/usr/include
|
||||||
|
$(CP) $(PKG_INSTALL_DIR)/usr/local/include/physfs.h $(1)/usr/include/
|
||||||
|
mkdir -p $(1)/usr/lib
|
||||||
|
$(CP) $(PKG_INSTALL_DIR)/usr/local/lib/libphysfs.so* $(1)/usr/lib/
|
||||||
|
endef
|
||||||
|
|
||||||
define Package/libphysfs/install
|
define Package/libphysfs/install
|
||||||
$(INSTALL_DIR) $(1)/usr/lib
|
$(INSTALL_DIR) $(1)/usr/lib
|
||||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/libphysfs.so.2.0.0 $(1)/usr/lib/
|
$(CP) $(PKG_BUILD_DIR)/libphysfs.so* $(1)/usr/lib/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call BuildPackage,libphysfs))
|
$(eval $(call BuildPackage,libphysfs))
|
Loading…
Reference in New Issue
Block a user