mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:47:13 +08:00
34 lines
822 B
Bash
34 lines
822 B
Bash
#
|
|
# Chakra Package
|
|
#
|
|
# 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.4
|
|
pkgrel=1
|
|
pkgdesc="Desktop notification library"
|
|
arch=('i686' 'x86_64')
|
|
url="http://library.gnome.org/devel/notification-spec/"
|
|
license=('LGPL')
|
|
depends=('gdk-pixbuf2')
|
|
makedepends=('gtk3' 'gobject-introspection')
|
|
options=('!libtool')
|
|
source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/0.7/${pkgname}-${pkgver}.tar.xz)
|
|
sha256sums=('e3c58345112672c2cbb05a67512ff6c7028892df7a34746e2162fe76d9877019')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|