forked from ports/contrib
29 lines
705 B
Plaintext
29 lines
705 B
Plaintext
# Description: Lightweight panel/taskbar.
|
|
# URL: https://gitlab.com/o9000/tint2
|
|
# Packager: Vitaly Sinilin, vs at kp4 dot ru
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: cmake imlib2 librsvg ninja startup-notification xorg-libxdamage
|
|
|
|
name=tint2
|
|
version=0.12.10
|
|
release=1
|
|
source=(http://crux.ster.zone/downloads/$name/$name-$version.tar.gz)
|
|
#source=(https://gitlab.com/o9000/tint2/repository/archive.tar.gz?ref=$version)
|
|
|
|
build() {
|
|
cd $name-$version-*
|
|
|
|
cmake \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DENABLE_BATTERY=ON \
|
|
-DENABLE_EXAMPLES=OFF \
|
|
-DENABLE_TINT2CONF=OFF \
|
|
-DSYSCONFDIR=/usr/etc \
|
|
-G Ninja
|
|
|
|
ninja
|
|
DESTDIR=$PKG ninja install
|
|
|
|
rm -rf $PKG/usr/share/{doc,locale}
|
|
}
|