aboutsummaryrefslogtreecommitdiff
path: root/tools/darwin/depends/sed/Makefile
diff options
context:
space:
mode:
authordavilla <davilla@4pi.com>2011-10-12 22:51:49 -0400
committerdavilla <davilla@4pi.com>2011-10-13 00:54:51 -0400
commit6777b009163f6c7b0f0836e04d2897d640f9799a (patch)
treed6e4c9d59cc296147309af0877fefe0782538c44 /tools/darwin/depends/sed/Makefile
parentfd2b074933533ac06f615ea0d3d3598de83249ee (diff)
[osx/ios] add gnu sed to darwin depends
Diffstat (limited to 'tools/darwin/depends/sed/Makefile')
-rw-r--r--tools/darwin/depends/sed/Makefile38
1 files changed, 38 insertions, 0 deletions
diff --git a/tools/darwin/depends/sed/Makefile b/tools/darwin/depends/sed/Makefile
new file mode 100644
index 0000000000..d07ea3b59a
--- /dev/null
+++ b/tools/darwin/depends/sed/Makefile
@@ -0,0 +1,38 @@
+include ../Makefile.include
+
+# lib name, version
+APPNAME=sed
+VERSION=4.2.1
+SOURCE=$(APPNAME)-$(VERSION)
+ARCHIVE=$(SOURCE).tar.gz
+
+# configuration settings
+export PATH:=$(TOOLCHAIN)/bin:$(PATH)
+CONFIGURE=./configure --prefix=$(TOOLCHAIN)
+
+APP=$(SOURCE)/bin/$(APPNAME)
+APPBIN=$(TOOLCHAIN)/bin/$(APPNAME)
+
+all: $(APPBIN)
+
+$(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); $(CONFIGURE)
+
+$(APP): $(SOURCE)
+ make -j $(MAKE_JOBS) -C $(SOURCE)
+
+$(APPBIN):
+ make $(APP)
+ make -C $(SOURCE) install
+
+clean:
+ make -C $(SOURCE) clean
+
+distclean::
+ rm -rf $(SOURCE)