blob: 08d7a859140aebe1280ed85f6ad6d4d14667a387 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/sh
NAME="startup-notification"
DESC="Monitor and display application startup"
MAKEDEPS="make "
DEPS="libx11 libxcb musl xcb-util "
PKG_VER=0.12
SOURCE="https://www.freedesktop.org/software/startup-notification/releases/startup-notification-$PKG_VER.tar.gz"
build () {
./configure \
--prefix=/usr
--bindir=/usr/bin \
--sysconfdir=/etc \
--disable-static
make
}
package () {
make DESTDIR=$PKG_DEST install
}
|