xdg-user-dirs: initial commit, version 0.18

This commit is contained in:
Tim Biermann 2023-10-03 22:49:19 +02:00
parent 9e10fcf4ee
commit d07f364c4d
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 40 additions and 0 deletions

10
xdg-user-dirs/.footprint Normal file
View File

@ -0,0 +1,10 @@
drwxr-xr-x root/root etc/
drwxr-xr-x root/root etc/xdg/
drwxr-xr-x root/root etc/xdg/autostart/
-rw-r--r-- root/root etc/xdg/autostart/xdg-user-dirs.desktop
-rw-r--r-- root/root etc/xdg/user-dirs.conf
-rw-r--r-- root/root etc/xdg/user-dirs.defaults
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/xdg-user-dir
-rwxr-xr-x root/root usr/bin/xdg-user-dirs-update

5
xdg-user-dirs/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3yw35DhQ1XlNrwhFLz33DXVRphJhaLW7zz4zL6J3PM70ooyVVySaPMgFV3mWs+q1ejiNO8Ntxajc64KsvutNUQE=
SHA256 (Pkgfile) = 0df8ea628bd0b9639d39dad974d98019adfa6226834c97e4cad2a38e7932bc91
SHA256 (.footprint) = 1143a2e697a2ca18e8d6a758dbe7f2253a077b6fcb7896c259b820d36b608a8e
SHA256 (xdg-user-dirs-0.18.tar.bz2) = b3ed5173cd6c0d97ee20409f6c48c75312fb5163532f2c31e33ee89b6ee6db36

25
xdg-user-dirs/Pkgfile Normal file
View File

@ -0,0 +1,25 @@
# Description: xdg-user-dirs is a tool to help manage "well known" user directories like the desktop folder and the music folder
# URL: https://www.freedesktop.org/wiki/Software/xdg-user-dirs/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on:
# Optional: libxslt
name=xdg-user-dirs
version=0.18
release=1
source=(https://gitlab.freedesktop.org/xdg/xdg-user-dirs/-/archive/$version/xdg-user-dirs-$version.tar.bz2)
build() {
cd $name-$version
prt-get isinst libxslt || PKGMK_XUD+=' --disable-documentation'
NOCONFIGURE=1 ./autogen.sh
./configure --prefix=/usr $PKGMK_XUD \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-nls
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/locale
}