mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-06 01:02:26 +01:00
46 lines
1.1 KiB
Plaintext
46 lines
1.1 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libnotify
|
|
pkgver=0.7.5
|
|
pkgrel=1
|
|
pkgdesc="Desktop notification library"
|
|
url="http://library.gnome.org/devel/notification-spec/"
|
|
arch="all"
|
|
license="LGPL"
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
depends=
|
|
depends_dev="gdk-pixbuf-dev glib-dev dbus-dev"
|
|
makedepends="$depends_dev gtk+3.0-dev autoconf automake"
|
|
source="http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz
|
|
skip-tests.patch"
|
|
|
|
_builddir="$srcdir"/$pkgname-$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 \
|
|
--disable-static \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
find "$pkgdir" -name '*.la' -delete
|
|
}
|
|
md5sums="8e9f8bd26517bc197ab1df748df289a9 libnotify-0.7.5.tar.xz
|
|
3b1827cf68f5bc2342486926a492eebf skip-tests.patch"
|