blob: 5e80f645c867772db361aadff20a7b2e09971b1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Description: Bibliothèque Mono Zero Configuration
# URL: http://mono-project.com/Mono_Zeroconf
# Maintainer: NuTyX Core team
# Packager: piernov <piernov@piernov.org>
# Depends on: mono, avahi-sharp
# Run on: mono,avahi-sharp
name=mono-zeroconf
version=0.9.0
release=1
source=(http://download.banshee-project.org/mono-zeroconf/$name-$version.tar.bz2)
build() {
unset MAKEFLAGS
cd $name-$version
./configure --prefix=/usr
make -j1
make DESTDIR=$PKG install
}
|