blob: 859c8a7bdee66d6c12e88b8a99fb48eb663d3fe3 (
plain)
1 # Description: Virtual machine and compiler based on Small for use with E17.
2 # URL: http://www.enlightenment.org/
3 # Maintainer: Victor Martinez, pitillo at ono dot com
4 # Depends on: eio
5
6 name=embryo
7 version=1.7.6
8 release=1
9 source=(http://download.enlightenment.org/releases/$name-$version.tar.gz)
10
11 build()
12 {
13 cd $name-$version
14 ./configure --prefix=/usr
15 make
16 make DESTDIR=$PKG install
17 }
|