#Maintainer: Frederic Boulet bipbiponlinux~AT~gmail.com #Former: Maximus (maximuus[at]gmail[dot]com) pkgname=mono-addins pkgver=0.5 pkgrel=1 zenver=66 arch=i486 source=("http://ftp.novell.com/pub/mono/sources/mono-addins/mono-addins-$pkgver.tar.bz2") sourcetemplate=http://zenwalk.pinguix.com/user-accounts/bip/EXTRA/d/$pkgname docs=("readme" "install" "copying" "changelog" "authors" "news") url=http://www.mono-project.com/Mono.Addins extradepends=(mono) slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "mono-addins - a framework for creating extensible applications in Mono" "Mono.Addins is a framework for creating extensible applications, and" "for creating libraries which extend those applications." "Mono.Addins has been designed to be easy to use and useful for a wide" "range of applications: from simple applications with small" "extensibility needs, to complex applications which need support for" "large add-in structures." "This new framework intends to set an standard for building extensible" "applications and add-ins in Mono." ) build() { cd $startdir/src/$pkgname-$pkgver ./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc --enable-gui make || return 1 make install DESTDIR=$startdir/pkg #make sure files that need to be executable are executable and files that do not, are not. cd $startdir/pkg find . -type f -name "*.dll" -or -name "*.mdb" -or -name "*.cs" -or -name "*.config" -or -name "*.mo" | xargs chmod -x find . -type f -name "*.exe" | xargs chmod +x }