Root/libsdl-image/Makefile

1#
2# Copyright (C) 2010 OpenWrt.org
3#
4# This is free software, licensed under the GNU General Public License v2.
5# See /LICENSE for more information.
6#
7
8include $(TOPDIR)/rules.mk
9
10PKG_NAME:=libsdl-image
11PKG_VERSION:=1.2.10
12PKG_RELEASE:=1
13
14PKG_SOURCE:=SDL_image-$(PKG_VERSION).tar.gz
15PKG_SOURCE_URL:=http://www.libsdl.org/projects/SDL_image/release/
16PKG_MD5SUM:=6c06584b31559e2b59f2b982d0d1f628
17PKG_BUILD_DIR:=$(BUILD_DIR)/SDL_image-$(PKG_VERSION)
18
19PKG_INSTALL:=1
20
21include $(INCLUDE_DIR)/package.mk
22include $(INCLUDE_DIR)/nls.mk
23
24define Package/libsdl-image
25  SECTION:=libs
26  CATEGORY:=Libraries
27  TITLE:=Simple DirectMedia Layer Image
28  URL:=http://www.libsdl.org/projects/SDL_image/
29  DEPENDS:=+libsdl
30endef
31
32define Package/libsdl-image/description
33  SDL_image is an image loading library that is used with the SDL library, and almost as portable. It allows a programmer to use multiple image formats without having to code all the loading and conversion algorithms themselves.
34endef
35
36TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include/SDL
37
38CONFIGURE_ARGS += \
39    --with-sdl-exec-prefix=$(STAGING_DIR)
40
41CONFIGURE_VARS += \
42    LIBS="-lSDL -ldirect -ldirectfb -lfusion"
43
44define Build/InstallDev
45    $(INSTALL_DIR) $(1)/usr/include/SDL $(1)/usr/lib/pkgconfig
46    $(CP) \
47        $(PKG_INSTALL_DIR)/usr/include/SDL/SDL_image.h \
48        $(1)/usr/include/SDL/
49    $(CP) \
50        $(PKG_INSTALL_DIR)/usr/lib/libSDL_image*.{a,so*} \
51        $(1)/usr/lib/
52    $(INSTALL_DATA) \
53        $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* \
54        $(1)/usr/lib/pkgconfig/
55endef
56
57define Package/libsdl-image/install
58    $(INSTALL_DIR) $(1)/usr/lib
59    $(CP) $(PKG_INSTALL_DIR)/usr/lib/libSDL_image*.so* $(1)/usr/lib/
60endef
61
62$(eval $(call BuildPackage,libsdl-image))
63

Archive Download this file



interactive