mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 18:07:14 +08:00
35 lines
831 B
Bash
35 lines
831 B
Bash
#
|
|
# Chakra Package
|
|
#
|
|
# Fabian Kosmale <inkane@chakra-project.org>
|
|
# Phil Miller <philm[at]chakra-project[dog]org>
|
|
# Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
# Drake Justice <djustice[at]chakra-project[dot]org>
|
|
#
|
|
|
|
|
|
pkgname=libnotify
|
|
pkgver=0.7.5
|
|
pkgrel=1
|
|
pkgdesc="Desktop notification library"
|
|
arch=('i686' 'x86_64')
|
|
url="http://library.gnome.org/devel/notification-spec/"
|
|
license=('LGPL')
|
|
depends=('gdk-pixbuf2')
|
|
makedepends=('gobject-introspection' 'gtk3')
|
|
options=('!libtool')
|
|
source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/0.7/${pkgname}-${pkgver}.tar.xz)
|
|
md5sums=('8e9f8bd26517bc197ab1df748df289a9')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|