wok view xdg-user-dirs/receipt @ rev 22291

updated xorg-xkbutils (1.0.3 -> 1.0.4)
author Hans-G?nter Theisgen
date Wed Nov 13 16:11:02 2019 +0100 (2019-11-13)
parents 9b3e3198d6a7
children d443265acbc1
line source
1 # SliTaz package receipt.
3 PACKAGE="xdg-user-dirs"
4 VERSION="0.17"
5 CATEGORY="utilities"
6 LICENSE="GPL"
7 SHORT_DESC="Tool to help manage user directories."
8 MAINTAINER="yuripourre@gmail.com"
9 WEB_SITE="https://www.freedesktop.org/wiki/Software/xdg-user-dirs"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://user-dirs.freedesktop.org/releases/$TARBALL"
14 DEPENDS=""
15 BUILD_DEPENDS="autoconf gawk"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./autogen.sh \
21 --disable-documentation \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $install/usr/bin $fs/usr
31 }