mirror of
https://github.com/dslm4515/BMLFS.git
synced 2025-08-20 14:31:47 +00:00
12 lines
352 B
Bash
12 lines
352 B
Bash
#! /bin/bash
|
|
|
|
# Notification Daemon 3.20.0
|
|
# source: http://ftp.gnome.org/pub/gnome/sources/notification-daemon/3.20/notification-daemon-3.20.0.tar.xz
|
|
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--disable-static $BUILDTRUPLE &&
|
|
|
|
read -p "Compile? " && make -j2 &&
|
|
read -p "Install? " && sudo -S porg -lD "make install"
|