1234567891011121314151617181920212223242526272829303132 |
- # Description: .NET'in ücretsiz uygulanması
- # URL: http://www.mono-project.com/
- # Packager: milisarge
- # Depends on: ca-certificates libgdiplus python
-
- name=mono
- version=5.0.0.94
- release=1
- source=(http://download.mono-project.com/sources/$name/$name-$version.tar.bz2
- mono.binfmt.d)
- build() {
- cd $name-${version%.*}
- ./configure --prefix=/usr \
- --sysconfdir=/etc \
- --bindir=/usr/bin \
- --sbindir=/usr/bin \
- --disable-quiet-build \
- --disable-system-aot \
- --with-mcs-docs=no
- make
- make DESTDIR=$PKG install
- cd $SRC/${name}-${version%.*}/mcs/jay
- make DESTDIR=$PKG prefix=/usr INSTALL=../../install-sh install
-
- # install binfmt conf file and pathes
- install -D -m644 $SRC/mono.binfmt.d $PKG/usr/lib/binfmt.d/mono.conf
- #fix .pc file to be able to request mono on what it depends, fixes #go-oo build
- sed -i -e "s:#Requires:Requires:" ${PKG}/usr/lib/pkgconfig/mono.pc
- }
|