contrib/tint2/Pkgfile

28 lines
622 B
Plaintext
Raw Normal View History

2016-03-30 15:59:44 +02:00
# Description: Lightweight panel/taskbar.
# URL: https://gitlab.com/o9000/tint2
# Maintainer: Danny Rawlins, crux at romster dot me
2019-10-05 11:27:33 +02:00
# Depends on: imlib2 librsvg startup-notification xorg-libxcomposite xorg-libxdamage xorg-libxinerama xorg-libxrandr
2009-12-30 09:04:51 +01:00
name=tint2
2019-10-05 11:27:33 +02:00
version=16.7
2016-03-30 15:59:44 +02:00
release=1
2018-08-15 13:57:35 +02:00
source=(https://gitlab.com/o9000/$name/-/archive/v$version/$name-v$version.tar.bz2)
2009-12-30 09:04:51 +01:00
build() {
2018-08-15 13:57:35 +02:00
cd $name-v$version
2009-12-30 09:04:51 +01:00
2019-10-05 11:27:33 +02:00
mkdir build
cd build
cmake .. \
2016-03-30 15:59:44 +02:00
-DCMAKE_INSTALL_PREFIX=/usr \
2017-08-16 13:45:47 +02:00
-DCMAKE_BUILD_TYPE=Release \
2016-03-30 15:59:44 +02:00
-DENABLE_TINT2CONF=OFF \
-G Ninja
2018-08-15 13:57:35 +02:00
ninja -j ${JOBS:-1}
2016-03-30 15:59:44 +02:00
DESTDIR=$PKG ninja install
2009-12-30 09:04:51 +01:00
2017-08-16 13:45:47 +02:00
rm -r $PKG/{etc,usr/share/doc}
2009-12-30 09:04:51 +01:00
}