forked from ports/contrib
26 lines
604 B
Plaintext
26 lines
604 B
Plaintext
# Description: Lightweight panel/taskbar.
|
|
# URL: https://gitlab.com/o9000/tint2
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: gtk imlib2 librsvg ninja startup-notification xorg-xrandr
|
|
|
|
name=tint2
|
|
version=15.2
|
|
release=1
|
|
source=(http://crux.ster.zone/downloads/$name/$name-$version.tar.bz2)
|
|
#source=(https://gitlab.com/o9000/tint2/repository/archive.tar.bz2?ref=$version)
|
|
|
|
build() {
|
|
cd $name-$version-*
|
|
|
|
cmake \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DENABLE_TINT2CONF=OFF \
|
|
-G Ninja
|
|
|
|
ninja
|
|
DESTDIR=$PKG ninja install
|
|
|
|
rm -r $PKG/{etc,usr/share/doc}
|
|
}
|