]> git.pld-linux.org Git - packages/libmpeg3.git/blame - libmpeg3-install.patch
- fixed and simplified file list, removed gzipping html doc
[packages/libmpeg3.git] / libmpeg3-install.patch
CommitLineData
6946b6e0 1diff -ruN libmpeg3/Makefile libmpeg3.org/Makefile
2--- libmpeg3/Makefile Wed Dec 26 16:40:52 2001
3+++ libmpeg3.org/Makefile Tue Apr 2 09:53:15 2002
4@@ -3,6 +3,27 @@
5 USE_MMX = 0
6 USE_CSS = 1
7
8+INSTALL_HEADERS = \
9+ bitstream.h \
10+ libmpeg3.h \
11+ mpeg3atrack.h \
12+ mpeg3css.h \
13+ mpeg3demux.h \
14+ mpeg3io.h \
15+ mpeg3private.h \
16+ mpeg3private.inc \
17+ mpeg3title.h \
18+ mpeg3vtrack.h \
19+ timecode.h
20+
21+INSTALL_AHEADERS = \
22+ audio/ac3.h \
23+ audio/mpeg3audio.h
24+
25+INSTALL_VHEADERS = \
26+ video/idct.h \
27+ video/slice.h \
28+ video/mpeg3video.h
29
30
31 ifeq ($(origin CFLAGS), environment)
32@@ -148,7 +169,20 @@
33 util: $(UTILS)
34
35 install:
36- cp $(UTILS) /usr/bin
37+
a6c7fa1d
JB
38+ install -d $(DESTDIR)/usr/bin
39+ install -d $(DESTDIR)/usr/include/libmpeg3
40+ install -d $(DESTDIR)/usr/include/libmpeg3/audio
41+ install -d $(DESTDIR)/usr/include/libmpeg3/video
42+ install -d $(DESTDIR)/usr/lib
43+ install $(UTILS) $(DESTDIR)/usr/bin
44+ install -m 644 $(INSTALL_HEADERS) $(DESTDIR)/usr/include/libmpeg3
45+ install -m 644 $(INSTALL_AHEADERS) $(DESTDIR)/usr/include/libmpeg3/audio
46+ install -m 644 $(INSTALL_VHEADERS) $(DESTDIR)/usr/include/libmpeg3/video
47+ install -m 644 $(OUTPUT) $(DESTDIR)/usr/lib
48+ install $(SHAREDOUTPUT) $(DESTDIR)/usr/lib
6946b6e0 49+
50+
51
52 clean:
53 rm -rf $(OBJDIR)
This page took 0.037183 seconds and 4 git commands to generate.