mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 05:47:41 +08:00
25 lines
788 B
Bash
25 lines
788 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=startup-notification
|
|
pkgver=0.10
|
|
pkgrel=2
|
|
pkgdesc="Monitor and display application startup"
|
|
arch=(i686 x86_64)
|
|
license=('LGPL')
|
|
depends=('libx11' 'libsm' 'xcb-util>=0.3.4')
|
|
options=('!libtool')
|
|
url="http://www.freedesktop.org"
|
|
source=(http://www.freedesktop.org/software/startup-notification/releases/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('bca0ed1c74bc4e483ea2ed12a5717354')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|