comparison src/uuid.mk @ 2993:1f944d8d6fe5

Modfications for libuuid dependancies * index.html: Added uuid package entry. * src/fltk-2-uuid-mod.patch: New patch file * src/fltk.m: Added uuid to fltk dependancies. * src/octave.mk (PKG_BUILD): Removed build of uuid.dll. * src/uuid.mk: New file.
author John Donoghue <john.donoghue@ieee.org>
date Sat, 25 May 2013 12:37:14 -0400
parents
children 4f9b72cf7ee7
comparison
equal deleted inserted replaced
2992:4b450c162e39 2993:1f944d8d6fe5
1 # This file is part of MXE.
2 # See index.html for further information.
3
4 PKG := uuid
5 $(PKG)_IGNORE = $(w32api_IGNORE)
6 $(PKG)_CHECKSUM = $(w32api_CHECKSUM)
7 $(PKG)_SUBDIR = $(w32api_SUBDIR)
8 $(PKG)_FILE = $(w32api_FILE)
9 $(PKG)_URL = $(w32api_URL)
10 $(PKG)_DEPS = gcc
11
12 define $(PKG)_UPDATE
13 echo "$(w32api_VERSION)"
14 endef
15
16 define $(PKG)_BUILD
17 if [ $(BUILD_SHARED) = yes ]; then \
18 $(INSTALL) -d '$(PREFIX)/$(TARGET)/bin'; \
19 $(MAKE_SHARED_FROM_STATIC) --ar '$(TARGET)-ar' --ld '$(TARGET)-gcc' '$(1)/lib/libuuid.a'; \
20 $(INSTALL) -m755 '$(1)/lib/libuuid.dll' '$(PREFIX)/$(TARGET)/bin/libuuid.dll'; \
21 fi
22 endef