wok-next view desktop-file-utils/receipt @ rev 19766

Up cookutils.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Jun 12 11:40:38 2017 +0300 (2017-06-12)
parents 0994d769f208
children f5bfda4cdfe9
line source
1 # SliTaz package receipt v2.
3 PACKAGE="desktop-file-utils"
4 VERSION="0.23"
5 CATEGORY="system-tools"
6 SHORT_DESC="Utilities for .desktop files"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.freedesktop.org/wiki/Software/desktop-file-utils/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="https://www.freedesktop.org/software/desktop-file-utils/releases/$TARBALL"
14 BUILD_DEPENDS="pkg-config glib-dev"
15 SPLIT="desktop-file-utils-extra"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure $CONFIGURE_ARGS && make && make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 case $PACKAGE in
27 desktop-file-utils)
28 copy update-desktop-database
29 DEPENDS="glib glibc-base pcre"
30 ;;
31 desktop-file-utils-extra)
32 copy desktop-file-edit desktop-file-install desktop-file-validate
33 DEPENDS="glib glibc-base pcre"
34 CAT="system-tools|extra desktop file utils"
35 ;;
36 esac
37 }