mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 00:57:14 +08:00
25 lines
654 B
Bash
25 lines
654 B
Bash
# Maintainer: Neophytos Kolokotronis <tetris4 AT gmail DOT com>
|
|
|
|
pkgname=startup-notification
|
|
pkgver=0.12
|
|
pkgrel=3
|
|
pkgdesc="Monitor and display application startup."
|
|
arch=('x86_64')
|
|
license=('LGPL')
|
|
depends=('libx11' 'libsm' 'xcb-util')
|
|
options=('!libtool')
|
|
url="http://www.freedesktop.org"
|
|
source=("http://www.freedesktop.org/software/startup-notification/releases/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('2cd77326d4dcaed9a5a23a1232fb38e9')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|