20 lines
457 B
Plaintext
20 lines
457 B
Plaintext
# Description: IETF'nin ICE taslağının bir uygulaması (p2p UDP veri akışları için)
|
||
# URL: http://people.suug.ch/~tgr/libnl
|
||
# Packager: alihan-ozturk28@hotmail.com
|
||
# Depends on: glib gstreamer1-plugins-base
|
||
|
||
name=libnice
|
||
version=0.1.13
|
||
release=1
|
||
|
||
source=(http://nice.freedesktop.org/releases/$name-$version.tar.gz)
|
||
|
||
build() {
|
||
cd $name-$version
|
||
./configure --prefix=/usr \
|
||
--without-gstreamer-0.10 \
|
||
--disable-static
|
||
make
|
||
make DESTDIR=$PKG install
|
||
}
|