mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-13 03:42:37 +01:00
52 lines
1.3 KiB
Plaintext
52 lines
1.3 KiB
Plaintext
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libnice
|
|
pkgver=0.1.4
|
|
pkgrel=0
|
|
pkgdesc="GLib ICE implementation"
|
|
url="http://nice.freedesktop.org/wiki/"
|
|
arch="all"
|
|
license="LGPLv2 and MPLv1.1"
|
|
depends=""
|
|
depends_dev="glib-dev"
|
|
makedepends="$depends_dev gstreamer-dev gst-plugins-base-dev"
|
|
install=""
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
source="http://nice.freedesktop.org/releases/libnice-$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/libnice-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--localstatedir=/var \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
rm -f "$pkgdir"/usr/lib/*.la \
|
|
"$pkgdir"/usr/lib/gstream*/*.la
|
|
}
|
|
|
|
md5sums="315c457b092980a4a9a0bea9f0723cce libnice-0.1.4.tar.gz"
|
|
sha256sums="44e517de9c01203158f2a3d59f058706299a4ae41dfe1a7eeb72c290fcc8bf57 libnice-0.1.4.tar.gz"
|
|
sha512sums="ee0029e641c3dc15e5d7f878985f7d87b06e6f033fd14827094171299165120b3b1ffedc6bd036c998768cc9059d7e5dce2322799aa843b0f38487b7243bd40f libnice-0.1.4.tar.gz"
|