diff options
author | davidovski <david@davidovski.xyz> | 2022-06-15 20:02:02 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-06-15 20:02:02 +0100 |
commit | d2567bfbdf0e9fa6db0a6ed1534831ec859a3e03 (patch) | |
tree | 684a17eebf446aa1adab1097616f1882c8d51568 /repo/squeak-vm/squeak-vm.xibuild | |
parent | d1fc3393cca72e8e432f827f7624e38734fad6dc (diff) |
added deps for qemu
Diffstat (limited to 'repo/squeak-vm/squeak-vm.xibuild')
-rw-r--r-- | repo/squeak-vm/squeak-vm.xibuild | 31 |
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 +} + |