blob: 123639e23b062097473a221ea6aeae7967aeedad (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
|
include ../Makefile.include
# lib name, version
LIBNAME=libvorbis
VERSION=1.2.3
SOURCE=$(LIBNAME)-$(VERSION)
ARCHIVE=$(SOURCE).tar.gz
# configuration settings
CONFIGURE=./configure --prefix=$(PREFIX) \
--disable-oggtest --disable-docs --disable-examples
LIBDYLIB=$(SOURCE)/.libs/$(LIBNAME).dylib
all: $(LIBDYLIB) .installed
$(TARBALLS_LOCATION)/$(ARCHIVE):
$(RETRIEVE_TOOL) $(RETRIEVE_TOOL_FLAGS) $(BASE_URL)/$(ARCHIVE)
$(SOURCE): $(TARBALLS_LOCATION)/$(ARCHIVE)
rm -rf $(SOURCE)
$(ARCHIVE_TOOL) $(ARCHIVE_TOOL_FLAGS) $(TARBALLS_LOCATION)/$(ARCHIVE)
echo $(SOURCE) > .gitignore
sed -ie "s|DDARWIN -fno-common -force_cpusubtype_ALL|DARWIN_NO_CARBON -fno-common -noforce_cpusubtype_ALL|" "$(SOURCE)/configure"
sed -ie "s|SUBDIRS = m4 include vq lib examples test doc|SUBDIRS = m4 include lib|" "$(SOURCE)/Makefile.in"
cd $(SOURCE); $(CONFIGURE)
$(LIBDYLIB): $(SOURCE)
make -C $(SOURCE)
.installed:
make -C $(SOURCE) install
touch $@
clean:
make -C $(SOURCE) clean
rm -f .installed
distclean::
rm -rf $(SOURCE) .installed
|