summaryrefslogtreecommitdiff
path: root/repo/devel
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-03-10 23:01:07 +0000
committerdavidovski <david@davidovski.xyz>2022-03-10 23:01:07 +0000
commit2bda0d54b37dd3ebf7917c3a58c0404d21afe7f6 (patch)
tree36a97971d0f9c6151f36b333383bb985289f23e3 /repo/devel
parent08c8891c20131576640f30cc40fcdbc57a497957 (diff)
shell will now default to dash asap
Diffstat (limited to 'repo/devel')
-rw-r--r--repo/devel/bison.xibuild4
-rw-r--r--repo/devel/clang.xibuild2
-rw-r--r--repo/devel/flex.xibuild2
-rw-r--r--repo/devel/gcc.xibuild2
-rw-r--r--repo/devel/gdb.xibuild2
-rw-r--r--repo/devel/pkg-config.xibuild4
-rw-r--r--repo/devel/swig.xibuild20
7 files changed, 26 insertions, 10 deletions
diff --git a/repo/devel/bison.xibuild b/repo/devel/bison.xibuild
index 8624062..2f96141 100644
--- a/repo/devel/bison.xibuild
+++ b/repo/devel/bison.xibuild
@@ -12,10 +12,6 @@ build () {
make
}
-check () {
- make check
-}
-
package () {
make DESTDIR=$PKG_DEST install
}
diff --git a/repo/devel/clang.xibuild b/repo/devel/clang.xibuild
index f917868..8ee7c38 100644
--- a/repo/devel/clang.xibuild
+++ b/repo/devel/clang.xibuild
@@ -1,6 +1,6 @@
#!/bin/sh
-MAKEDEPS="cmake llvm libxml2 ninja python3 python-markupsafe python-pygments"
+MAKEDEPS="cmake llvm libxml2 ninja python python-markupsafe python-pygments"
DEPS="curl gcc libssh2 openssl"
PKG_VER=13.0.1
diff --git a/repo/devel/flex.xibuild b/repo/devel/flex.xibuild
index 623f963..abf55f4 100644
--- a/repo/devel/flex.xibuild
+++ b/repo/devel/flex.xibuild
@@ -1,7 +1,7 @@
#!/bin/sh
MAKEDEPS="make help2man"
-DEPS="musl m4 sh libiconv"
+DEPS="musl m4 sh"
PKG_VER=2.6.4
SOURCE=https://github.com/westes/flex/releases/download/v$PKG_VER/flex-$PKG_VER.tar.gz
diff --git a/repo/devel/gcc.xibuild b/repo/devel/gcc.xibuild
index 25e2ad5..e0176cb 100644
--- a/repo/devel/gcc.xibuild
+++ b/repo/devel/gcc.xibuild
@@ -1,6 +1,6 @@
#!/bin/sh
-MAKEDEPS="grep make dejagnu inetutils flex"
+MAKEDEPS="grep make dejagnu flex"
DEPS="zstd musl binutils mpc mpfr gmp"
diff --git a/repo/devel/gdb.xibuild b/repo/devel/gdb.xibuild
index e16ac37..49d8d49 100644
--- a/repo/devel/gdb.xibuild
+++ b/repo/devel/gdb.xibuild
@@ -1,6 +1,6 @@
#!/bin/sh
-MAKEDEPS="make expat guile pmfr ncurses python xz texinfo"
+MAKEDEPS="make expat guile ncurses python xz texinfo"
DEPS="python-six doxygen gcc guile python rustc valgrind systemtap"
PKG_VER=11.2
diff --git a/repo/devel/pkg-config.xibuild b/repo/devel/pkg-config.xibuild
index 29feb3b..3db8dfd 100644
--- a/repo/devel/pkg-config.xibuild
+++ b/repo/devel/pkg-config.xibuild
@@ -1,7 +1,7 @@
#!/bin/sh
-MAKEDEPS="make "
-DEPS="musl libiconv"
+MAKEDEPS="make"
+DEPS="musl"
PKG_VER=0.29.2
SOURCE=https://pkg-config.freedesktop.org/releases/pkg-config-$PKG_VER.tar.gz
diff --git a/repo/devel/swig.xibuild b/repo/devel/swig.xibuild
new file mode 100644
index 0000000..5d2471c
--- /dev/null
+++ b/repo/devel/swig.xibuild
@@ -0,0 +1,20 @@
+#!/bin/sh
+
+MAKEDEPS="make autoconf bison"
+DEPS="guile gcc musl pcre zlib"
+
+PKG_VER=4.0.2
+SOURCE=https://downloads.sourceforge.net/swig/swig-$PKG_VER.tar.gz
+DESC="A compiler that makes it easy to integrate C and C++ code with scripting languages"
+
+build () {
+ ./configure --prefix=/usr
+ make
+}
+
+package () {
+ make DESTDIR=$PKG_DEST install
+
+ # backwards compatibility?
+ ln -s /usr/bin/aclocal $PKG_DEST/usr/bin/aclocal-1.15
+}