mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
551df4d623
The FMOD Ex Programmer's API and Designer are a world-leading library and toolkit for the creation and playback of interactive audio. FMOD products are widely used in the games industry and have gained a strong reputation for its ease of use, powerful software-mixed architecture and comprehensive cross-platform support. FMOD supports more hardware platforms than any other audio system - including the latest 'next gen' consoles. Consider the cost savings of not having to change code across any platform - Save months of development time. FMOD is actively developed, with regular releases of new features. Many new requested features have been provided to customers in a very short turnaround - if you want a new feature, just ask! WWW: http://www.fmod.org/
22 lines
647 B
Plaintext
22 lines
647 B
Plaintext
--- Makefile.orig 2009-07-27 22:55:17.000000000 +1000
|
|
+++ Makefile 2010-01-06 22:12:47.000000000 +1100
|
|
@@ -1,8 +1,8 @@
|
|
VERSION = 4.24.16
|
|
LIBDIR = api/lib
|
|
HDRDIR = api/inc
|
|
-DESTLIBDIR = /usr/local/lib
|
|
-DESTHDRDIR = /usr/local/include/fmodex
|
|
+DESTLIBDIR = %%PREFIX%%/lib
|
|
+DESTHDRDIR = %%PREFIX%%/include/fmodex
|
|
|
|
all:
|
|
@echo "Possible targets:"
|
|
@@ -51,7 +51,6 @@
|
|
@echo "Installing FMOD Ex libraries and headers..."
|
|
cp -f ${LIBDIR}/libfmodex-${VERSION}.so ${DESTLIBDIR}
|
|
cp -f ${LIBDIR}/libfmodexp-${VERSION}.so ${DESTLIBDIR}
|
|
- ldconfig -n ${DESTLIBDIR}
|
|
mkdir -p ${DESTHDRDIR}
|
|
cp -f ${HDRDIR}/*.h* ${DESTHDRDIR}
|
|
@echo "done."
|