blob: f6a77381c38ef7e13ddafed73b9cab789758d133 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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
}
|