Package Details: io-git 20151111.11.g457b5ff-1

Git Clone URL: https://aur.archlinux.org/io-git.git (read-only, click to copy)
Package Base: io-git
Description: Io is a prototype-based programming language inspired by Smalltalk
Upstream URL: http://www.iolanguage.com/
Licenses: BSD
Conflicts: io
Provides: io
Submitter: None
Maintainer: navigaid
Last Packager: makeufreak
Votes: 8
Popularity: 0.000000
First Submitted: 2008-04-07 15:55 (UTC)
Last Updated: 2016-02-04 18:43 (UTC)

Latest Comments

<deleted-account> commented on 2013-09-13 04:59 (UTC)

I compile error with: /bin/sh: ../../_build/binaries/io_static: No such file or directory

nandub commented on 2013-06-22 23:14 (UTC)

plmday I have updated the package. Let me know. if you have other changes you can open pull request on: https://github.com/nandub/archlinux

reflectionalist commented on 2013-06-20 14:11 (UTC)

There are several problems with the current PKGBUILD. Below is a working one. pkgname=io-git pkgver=20120719 pkgrel=1 pkgdesc="Io is a prototype-based programming language inspired by Smalltalk" arch=('i686' 'x86_64') url="http://www.iolanguage.com/" license=('BSD') depends=('libevent' 'yajl' 'pcre') makedepends=('git' 'cmake') conflicts=('io') _gitroot="https://github.com/stevedekorte/io.git" _gitname="io" build() { cd "$srcdir" msg "Connecting to GIT server...." if [[ -d "$_gitname" ]]; then cd "$_gitname" && git pull origin msg "The local files are updated." else git clone --depth=1 "$_gitroot" "$_gitname" cd "$_gitname" fi msg "GIT checkout done or server timeout" msg "Starting build..." rm -rf "build" mkdir "build" cd "build" cmake .. -DCMAKE_INSTALL_PREFIX=/usr } package() { cd "$srcdir/$_gitname/build" make DESTDIR="$pkgdir/" install } # vim:set ts=2 sw=2 et:

bougyman commented on 2011-05-14 20:36 (UTC)

This isn't building, i'll work it out this weekend.

bougyman commented on 2011-04-12 16:12 (UTC)

I'm a new Io user, wanted the latest version, so I'll maintain this, but need feedback from Io users to catch any problems.

tsion commented on 2011-04-03 22:26 (UTC)

I'm not interested in maintaining this package anymore, so I've abandoned it. Feel free to adopt it and bring it up to date.

<deleted-account> commented on 2010-03-27 21:58 (UTC)

Hello, it looks like the addons aren't building, at least they are unavilible from the io REPL. Can you possibly fix this?