summaryrefslogtreecommitdiff
path: root/repo/squeak-vm/squeak-vm.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/squeak-vm/squeak-vm.xibuild')
-rw-r--r--repo/squeak-vm/squeak-vm.xibuild31
1 files changed, 31 insertions, 0 deletions
diff --git a/repo/squeak-vm/squeak-vm.xibuild b/repo/squeak-vm/squeak-vm.xibuild
new file mode 100644
index 0000000..f6a7738
--- /dev/null
+++ b/repo/squeak-vm/squeak-vm.xibuild
@@ -0,0 +1,31 @@
+#!/bin/sh
+
+NAME="squeak-vm"
+DESC="Full-featured implementation of the Smalltalk programming language and environment"
+
+MAKEDEPS=" make cmake"
+
+PKG_VER=4.10.2.2614
+SOURCE="http://squeakvm.org/unix/release/Squeak-$PKG_VER-src.tar.gz"
+
+ADDITIONAL="
+sqVirtualMachine.patch
+"
+
+prepare () {
+ apply_patches
+}
+
+build() {
+ ./unix/cmake/configure \
+ --prefix=/usr \
+ --without-quartz \
+ --with-x \
+ --enable-mpg-mmx
+ make
+}
+
+package() {
+ make DESTDIR="$PKG_DEST" install
+}
+