mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-04 08:12:06 +01:00
Since abuild v2.22.0, these are removed automatically unless 'libtool' option has been specified.
48 lines
1.1 KiB
Plaintext
48 lines
1.1 KiB
Plaintext
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=gssdp
|
|
pkgver=0.12.2
|
|
pkgrel=0
|
|
pkgdesc="Resource discovery and announcement over SSDP"
|
|
url="http://www.gupnp.org/"
|
|
arch="all"
|
|
license="LGPL2"
|
|
depends=
|
|
depends_dev="dbus-glib-dev glib-dev gtk+-dev libsoup-dev libxml2-dev"
|
|
makedepends="$depends_dev gobject-introspection-dev"
|
|
install=""
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
source="http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
|
|
gssdp-fixdso.patch"
|
|
|
|
_builddir="$srcdir"/gssdp-$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 --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--localstatedir=/var \
|
|
--enable-introspection=yes \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|
|
|
|
md5sums="7805d3062706bdba4f088ce7e96a9293 gssdp-0.12.2.tar.xz
|
|
44a768c4245e69b54b96b985143a6faa gssdp-fixdso.patch"
|