blob: 7f827410f795eb3c5be910f58f33085b1595f239 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# This file is part of mingw-cross-env.
# See doc/index.html for further information.
# DirectX
PKG := directx
$(PKG)_IGNORE :=
$(PKG)_VERSION := 8.0
$(PKG)_CHECKSUM := dd214d0ab1c202fa2c458850861c07926f929b8b
$(PKG)_SUBDIR := .
$(PKG)_FILE := dx$(subst .,,$($(PKG)_VERSION))_mgw.zip
$(PKG)_WEBSITE := http://msdn.microsoft.com/directx/
$(PKG)_URL := http://alleg.sourceforge.net/files/$($(PKG)_FILE)
$(PKG)_DEPS := w32api
define $(PKG)_UPDATE
wget -q -O- 'http://alleg.sourceforge.net/wip.html' | \
$(SED) -n 's,.*dx\([0-9]\)\([^>]*\)_mgw\.zip.*,\1.\2,p' | \
tail -1
endef
define $(PKG)_BUILD
$(INSTALL) -d '$(PREFIX)/$(TARGET)/include'
$(INSTALL) -m644 '$(1)/include/'*.h '$(PREFIX)/$(TARGET)/include/'
$(INSTALL) -m644 '$(1)/include/'*.inl '$(PREFIX)/$(TARGET)/include/'
$(INSTALL) -d '$(PREFIX)/$(TARGET)/lib'
$(INSTALL) -m644 '$(1)/lib/'*.a '$(PREFIX)/$(TARGET)/lib/'
endef
|