summaryrefslogtreecommitdiffstats
path: root/bindings/perl
diff options
context:
space:
mode:
authorJürgen Hötzel <juergen@archlinux.org>2007-02-01 20:47:39 +0100
committerJürgen Hötzel <juergen@archlinux.org>2007-02-01 20:47:39 +0100
commite70a3e80748ffe70c32f2c91998841aa81bb03a3 (patch)
tree65b76423654ff8f22c23b6fee389c0d7fafb87e9 /bindings/perl
parentcdaed9221d9614c4c43103d79f8b53b916d80d86 (diff)
downloadpacman-e70a3e80748ffe70c32f2c91998841aa81bb03a3.tar.gz
pacman-e70a3e80748ffe70c32f2c91998841aa81bb03a3.tar.xz
* removal of swig generated bindings
Diffstat (limited to 'bindings/perl')
-rw-r--r--bindings/perl/.cvsignore5
-rw-r--r--bindings/perl/Makefile.in42
2 files changed, 0 insertions, 47 deletions
diff --git a/bindings/perl/.cvsignore b/bindings/perl/.cvsignore
deleted file mode 100644
index 27349e9d..00000000
--- a/bindings/perl/.cvsignore
+++ /dev/null
@@ -1,5 +0,0 @@
-Makefile
-Core*
-alpm.i
-alpm.h
-alpm_wrap*
diff --git a/bindings/perl/Makefile.in b/bindings/perl/Makefile.in
deleted file mode 100644
index 6f7e8268..00000000
--- a/bindings/perl/Makefile.in
+++ /dev/null
@@ -1,42 +0,0 @@
-top_srcdir = @top_srcdir@
-prefix = @prefix@
-
-CFLAGS = $(subst -Werror,,@CFLAGS@)
-CFLAGS += $(shell perl -MExtUtils::Embed -e ccopts)
-CFLAGS += -I$(top_srcdir)/lib/libalpm
-ifeq ($(shell arch),x86_64)
-CFLAGS += -fPIC
-endif
-LDFLAGS += -L$(top_srcdir)/lib/libalpm/.libs -lalpm
-LIBDIR += $(shell perl -V|grep site|sed 's/^ *//;s|/usr|$(prefix)|;q')
-
-all: Core.so
-
-Core.so: alpm_wrap.o
- $(CC) -shared -Wl,-soname,$@ -o $@ $^ $(LDFLAGS)
-
-alpm_wrap.o: alpm_wrap.c
- $(CC) $(CFLAGS) -c -o $@ -include alpm.h $^
-
-alpm_wrap.c:
- cp $(top_srcdir)/lib/libalpm/alpm.h ./
- cp $(top_srcdir)/bindings/alpm.i ./
- swig -perl alpm.i
-
-install: install-so install-pm
-
-install-so: Core.so
- mkdir -p $(DESTDIR)$(LIBDIR)/auto/Alpm/Core
- install $^ $(DESTDIR)$(LIBDIR)/auto/Alpm/Core/
-
-install-pm: Core.pm
- mkdir -p $(DESTDIR)$(LIBDIR)/Alpm/
- install -m644 $^ $(DESTDIR)$(LIBDIR)/Alpm/
-
-clean:
- rm -f Core* alpm{.h,.i,_wrap*}
-
-distclean: clean
- rm -f Makefile
-
-check: