mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 11:37:14 +08:00
31 lines
724 B
Bash
31 lines
724 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=libnice
|
|
pkgver=0.1.13
|
|
pkgrel=1
|
|
pkgdesc="An implementation of the IETF's draft ICE (for p2p UDP data streams)"
|
|
arch=('i686' 'x86_64')
|
|
url="http://nice.freedesktop.org"
|
|
license=('LGPL')
|
|
depends=('gstreamer')
|
|
options=('!libtool')
|
|
source=(http://nice.freedesktop.org/releases/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('3226faeaf48a9150ada00da2e2865959')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr \
|
|
--with-gstreamer \
|
|
--without-gstreamer-0.10 \
|
|
--disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR=${pkgdir} install
|
|
}
|