forked from ports/contrib
28 lines
622 B
Plaintext
28 lines
622 B
Plaintext
# Description: Lightweight panel/taskbar.
|
|
# URL: https://gitlab.com/o9000/tint2
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: imlib2 librsvg startup-notification xorg-libxcomposite xorg-libxdamage xorg-libxinerama xorg-libxrandr
|
|
|
|
name=tint2
|
|
version=16.7
|
|
release=1
|
|
source=(https://gitlab.com/o9000/$name/-/archive/v$version/$name-v$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-v$version
|
|
|
|
mkdir build
|
|
cd build
|
|
|
|
cmake .. \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DENABLE_TINT2CONF=OFF \
|
|
-G Ninja
|
|
|
|
ninja -j ${JOBS:-1}
|
|
DESTDIR=$PKG ninja install
|
|
|
|
rm -r $PKG/{etc,usr/share/doc}
|
|
}
|