mirror of
https://github.com/dslm4515/BMLFS.git
synced 2025-08-20 14:31:47 +00:00
14 lines
298 B
Bash
14 lines
298 B
Bash
#! /bin/bash
|
|
|
|
# Breeze Icons 5.60.0
|
|
# source: http://download.kde.org/stable/frameworks/5.60/breeze-icons-5.60.0.tar.xz
|
|
|
|
mkdir build &&
|
|
cd build &&
|
|
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DBUILD_TESTING=OFF \
|
|
-Wno-dev .. &&
|
|
|
|
sudo -S porg -lp breeze-icons-5.60.0 "make install"
|