tint2: 17.1.3

This commit is contained in:
Daniel Azevedo 2024-10-01 15:06:26 +01:00
parent 8bf8e7f90c
commit ed5e37a2f3
4 changed files with 66 additions and 0 deletions

34
tint2/.footprint Normal file
View file

@ -0,0 +1,34 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/tint2
-rwxr-xr-x root/root usr/bin/tint2-send
-rwxr-xr-x root/root usr/bin/tint2conf
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/applications/
-rw-r--r-- root/root usr/share/applications/tint2.desktop
-rw-r--r-- root/root usr/share/applications/tint2conf.desktop
drwxr-xr-x root/root usr/share/icons/
drwxr-xr-x root/root usr/share/icons/hicolor/
drwxr-xr-x root/root usr/share/icons/hicolor/scalable/
drwxr-xr-x root/root usr/share/icons/hicolor/scalable/apps/
-rw-r--r-- root/root usr/share/icons/hicolor/scalable/apps/tint2.svg
-rw-r--r-- root/root usr/share/icons/hicolor/scalable/apps/tint2conf.svg
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/tint2.1.gz
drwxr-xr-x root/root usr/share/mime/
drwxr-xr-x root/root usr/share/mime/packages/
-rw-r--r-- root/root usr/share/mime/packages/tint2conf.xml
drwxr-xr-x root/root usr/share/tint2/
-rw-r--r-- root/root usr/share/tint2/default_icon.png
-rw-r--r-- root/root usr/share/tint2/horizontal-dark-opaque.tint2rc
-rw-r--r-- root/root usr/share/tint2/horizontal-dark-transparent.tint2rc
-rw-r--r-- root/root usr/share/tint2/horizontal-icon-only.tint2rc
-rw-r--r-- root/root usr/share/tint2/horizontal-light-opaque.tint2rc
-rw-r--r-- root/root usr/share/tint2/horizontal-light-transparent.tint2rc
-rw-r--r-- root/root usr/share/tint2/horizontal-text-only.tint2rc
-rw-r--r-- root/root usr/share/tint2/vertical-dark-opaque.tint2rc
-rw-r--r-- root/root usr/share/tint2/vertical-dark-transparent.tint2rc
-rw-r--r-- root/root usr/share/tint2/vertical-light-opaque.tint2rc
-rw-r--r-- root/root usr/share/tint2/vertical-light-transparent.tint2rc
-rw-r--r-- root/root usr/share/tint2/vertical-neutral-icons.tint2rc

1
tint2/.md5sum Normal file
View file

@ -0,0 +1 @@
a2ea7aee4d5c81aae5ae8a48fe8daa84 tint2-17.1.3.tar.bz2

5
tint2/.signature Normal file
View file

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/d77crux.pub
RWT0dvMs3lAWkDXR2w71zFPpaNLfO4Oex5xVZeF9peXJwoVYDh4dX5AeaBIKIKJyYnwyzXxBjRC3yQ5UHGX1HJ71BGvWAmxpmw0=
SHA256 (Pkgfile) = 738d00e5ee92dc05e1e311f44bf4f61184d1d0ae71f1e56d76290e18e3e0e713
SHA256 (.footprint) = 95cb705d8b2f190b4cf57c48e4b4c2e83b16411785cd1a0e4af340e530ef30ac
SHA256 (tint2-17.1.3.tar.bz2) = d49103d60a8753fa5e808e57f4cc028f677009a3594eb0f64dcfdc6d2b96e33c

26
tint2/Pkgfile Normal file
View file

@ -0,0 +1,26 @@
# Description: Lightweight panel/taskbar.
# URL: https://gitlab.com/nick87720z/tint2
# Maintainer: Daniel Azevedo, daniazevedo77 at posteo dot net
# Depends on: imlib2 librsvg startup-notification xorg-libxcomposite xorg-libxdamage xorg-libxinerama xorg-libxrandr
# originally found at contrib repo, by John McQuah, jmcquah at disroot dot org (with slight mods).
name=tint2
version=17.1.3
release=2
source=(https://gitlab.com/nick87720z/$name/-/archive/$version/$name-$version.tar.bz2)
build() {
cmake -S $name-$version -B build -G Ninja \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
-D ENABLE_TINT2CONF=ON \
-Wno-dev
ninja -C build -j ${JOBS:-1}
DESTDIR=$PKG ninja -C build install
rm -rf $PKG/{etc,usr/share/doc,usr/share/locale/}
}