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

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents 400af7fadc23
children 535c806240cc
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="libtool 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 }