blob: 8549ecd774d7398fa1b3ffc2e1721adf6a5a2232 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# A quick and dirty Makefile to download/build and install
#
# Usage:
# make
# sudo make install
include ../config.mk
# lib name, version
LIBNAME=afpfs-ng
VERSION=0.8.1
SOURCE=$(LIBNAME)-$(VERSION)
# download location and format
BASE_URL=http://downloads.sourceforge.net/sourceforge/afpfs-ng/
ARCHIVE=$(SOURCE).tar.bz2
TARBALLS_LOCATION=/Users/Shared/xbmc-depends/tarballs
RETRIEVE_TOOL=/usr/bin/curl
RETRIEVE_TOOL_FLAGS=-Ls --create-dirs --output $(TARBALLS_LOCATION)/$(ARCHIVE)
ARCHIVE_TOOL=tar
ARCHIVE_TOOL_FLAGS=xf
# configuration settings
export CFLAGS+=-undefined dynamic_lookup
export CXXFLAGS+=-undefined dynamic_lookup
export LDFLAGS+=-Wl,-read_only_relocs,suppress
CONFIGURE=./configure --prefix=$(PREFIX) --host=$(HOST) --enable-shared=yes \
--disable-fuse ac_cv_func_malloc_0_nonnull=yes
LIBDYLIB=$(SOURCE)/lib/.libs/libafpclient.dylib
CLEAN_FILES=$(ARCHIVE) $(SOURCE)
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
cd $(SOURCE); patch -p1 <../01-gcrypt.patch
cd $(SOURCE); autoreconf -vif
cd $(SOURCE); $(CONFIGURE)
$(LIBDYLIB): $(SOURCE)
make -C $(SOURCE)
.installed:
make -C $(SOURCE) install
touch $@
clean:
make -C $(SOURCE) clean
rm .installed
distclean::
rm -rf $(SOURCE) .installed
|