summaryrefslogtreecommitdiff
path: root/community/squeak-vm
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
committerroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
commit8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch)
tree03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/squeak-vm
parente445a313723389ba9ee1fded025c567dae5b21ea (diff)
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/squeak-vm')
-rw-r--r--community/squeak-vm/PKGBUILD41
1 files changed, 41 insertions, 0 deletions
diff --git a/community/squeak-vm/PKGBUILD b/community/squeak-vm/PKGBUILD
new file mode 100644
index 000000000..2ff380d0c
--- /dev/null
+++ b/community/squeak-vm/PKGBUILD
@@ -0,0 +1,41 @@
+# $Id: PKGBUILD 85994 2013-03-10 21:24:51Z jsteel $
+# Maintainer: Jonathan Steel <mail at jsteel dot org>
+# Contributor: Piero Sartini <piero@sartini.de>
+# Contributor: Cilyan Olowen <gaknar@gmail.com>
+# Contributor: knut
+# Contributor: kxmd
+
+pkgname=squeak-vm
+pkgver=4.10.2.2614
+pkgrel=1
+pkgdesc="Full-featured implementation of the Smalltalk programming language and environment"
+arch=('i686' 'x86_64')
+url="http://squeakvm.org"
+license=('custom:MIT' 'APACHE')
+conflicts=('squeak')
+provides=('squeak')
+depends=('alsa-lib' 'dbus-core' 'libxrender' 'libgl' 'util-linux')
+makedepends=('cmake' 'mesa')
+optdepends=('speex: for ogg plugin' 'gstreamer0.10: for gstreamer plugin'
+ 'libpulse: for pulse plugin' 'squeak-image: for the full Squeak
+ environment')
+source=(http://squeakvm.org/unix/release/Squeak-$pkgver-src.tar.gz)
+md5sums=('8a5cb1d6899d55df56154fab8716e034')
+
+build() {
+ cd "$srcdir"/Squeak-$pkgver-src/
+
+ ./unix/cmake/configure --prefix=/usr --without-quartz --with-x \
+ --enable-mpg-mmx
+
+ make
+}
+
+package() {
+ cd "$srcdir"/Squeak-$pkgver-src
+
+ make DESTDIR="$pkgdir"/ install
+
+ install -Dm644 "$srcdir"/Squeak-$pkgver-src/unix/doc/LICENSE \
+ "$pkgdir"/usr/share/licenses/squeak-vm/LICENSE
+}