4953baa52e
The Apple Lossless Audio Codec (ALAC) is an audio codec developed by Apple and supported on iPhone, iPad, most iPods, Mac and iTunes. ALAC is a data compression method which reduces the size of audio files with no loss of information. A decoded ALAC stream is bit-for-bit identical to the original uncompressed audio file. This is Apple Lossless Audio Codec encode and decode command.
39 lines
895 B
Text
39 lines
895 B
Text
$NetBSD: patch-makefile,v 1.1.1.1 2011/11/14 19:43:21 ryoon Exp $
|
|
|
|
* Dynamically linked to libalac
|
|
* Add install target
|
|
|
|
--- makefile.orig 2011-11-13 08:20:10.000000000 +0000
|
|
+++ makefile
|
|
@@ -5,9 +5,9 @@ LFLAGS = -Wall -L$(CODECDIR) -lalac
|
|
CC = g++
|
|
|
|
SRCDIR = .
|
|
-CODECDIR = ../codec
|
|
+CODECDIR = ${PREFIX}/lib
|
|
OBJDIR = ./obj
|
|
-INCLUDES = ../codec
|
|
+INCLUDES = ${PREFIX}/include
|
|
|
|
HEADERS = \
|
|
$(SRCDIR)/CAFFileALAC.h \
|
|
@@ -29,8 +29,7 @@ main.o \
|
|
CAFFileALAC.o
|
|
|
|
alacconvert: $(OBJS)
|
|
- (cd $(CODECDIR); $(MAKE))
|
|
- $(CC) $(LFLAGS) $(OBJS) -o alacconvert
|
|
+ $(CC) -Wl,-R ${PREFIX}/lib $(LFLAGS) $(OBJS) -o alacconvert
|
|
|
|
main.o : main.cpp
|
|
$(CC) -I $(INCLUDES) $(CFLAGS) main.cpp
|
|
@@ -41,6 +40,9 @@ CAFFileALAC.o : CAFFileALAC.cpp
|
|
clean:
|
|
-rm $(OBJS) alacconvert
|
|
|
|
+install:
|
|
+ ${BSD_INSTALL_LIB_DIR} ${DESTDIR}${PREFIX}/bin
|
|
+ ${BSD_INSTALL_PROGRAM} alacconvert ${DESTDIR}${PREFIX}/bin
|
|
|
|
|
|
|