]> git.saurik.com Git - cycript.git/blobdiff - ios.mk
Pointer needs a special case to pull off functors.
[cycript.git] / ios.mk
diff --git a/ios.mk b/ios.mk
index 4baa93d7bfa8e95c8e8b5623a58768ea595a69cf..c9e2e35264f9cc93d0c7f13f219e3ad841f3b2ad 100644 (file)
--- a/ios.mk
+++ b/ios.mk
@@ -1,21 +1,6 @@
-srcdir := .
-
-sed := sed
-git := git
-
-arch := iphoneos-arm
-
-#ifneq ($(git),)
-version := $(shell $(git) describe --always --tags --dirty="+" --match="v*" | $(sed) -e 's@-\([^-]*\)-\([^-]*\)$$@+\1.\2@;s@^v@@;s@%@~@g')
-#else
-#version := @PACKAGE_VERSION@
-#endif
-
-deb := $(shell grep ^Package: $(srcdir)/control.in | cut -d ' ' -f 2-)_$(shell grep ^Version: $(srcdir)/control.in | cut -d ' ' -f 2 | $(sed) -e 's/\#/$(version)/')_$(arch).deb
-
 binary := Cycript_/cycript
 
-$(deb): $(binary) $(patsubst %,Cycript_/libcycript%dylib,. -any. -sim. -sys.) control
+$(deb): $(binary) $(patsubst %,Cycript_/libcycript%dylib,. -sim. -sys.) control
        rm -rf package
        mkdir -p package/DEBIAN
        cp -pR control package/DEBIAN
@@ -28,7 +13,7 @@ control: control.tmp
        [[ -e control ]] && diff control control.tmp &>/dev/null || cp -pRf control.tmp control
 
 # XXX: this is now all broken
-depends := apr-lib, readline, libffi (>= 1:3.0.10-5), adv-cmds
+depends := readline, libffi (>= 1:3.0.10-5), adv-cmds
 ifeq ($(depends)$(dll),dylib)
 control.tmp: control.in $(binary) .libs/$(lib)cycript.dylib
        $(sed) -e 's/&/'"$$(dpkg-query -S $$(otool -lah $(binary) .libs/*.dylib | grep dylib | grep -v ':$$' | $(sed) -e 's/^ *name //;s/ (offset [0-9]*)$$//' | sort -u) 2>/dev/null | $(sed) -e 's/:.*//; /^cycript$$/ d; s/$$/,/' | sort -u | tr '\n' ' ')"'/;s/, $$//;s/#/$(version)/;s/%/$(arch)/' $< >$@
@@ -41,8 +26,3 @@ control.tmp: control.in
        $(sed) -e 's/&/$(depends)/;s/,$$//;s/#/$(version)/;s/%/$(arch)/' $< >$@
 endif
 endif
-
-clean::
-       rm -rf control
-
-.PHONY: clean