mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 04:27:15 +08:00
30 lines
847 B
Bash
30 lines
847 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=libnotify
|
|
pkgver=0.5.2
|
|
pkgrel=1
|
|
pkgdesc="Desktop notification library"
|
|
arch=('i686' 'x86_64')
|
|
url="http://library.gnome.org/devel/notification-spec/"
|
|
license=('LGPL')
|
|
depends=('gdk-pixbuf2')
|
|
makedepends=('gtk2' 'gobject-introspection')
|
|
options=('!libtool')
|
|
source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/0.5/${pkgname}-${pkgver}.tar.gz)
|
|
sha256sums=('ab6833e98c816ae96800de07c43c3a44015be64eb3f7f8117cdd0a0889e1f41d')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|