wok-next annotate xdg-utils/receipt @ rev 20852

Fix build: xplc, xournal
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun Jun 24 17:58:25 2018 +0300 (2018-06-24)
parents d6b99c62ef00
children 7506b35e1c6f
rev   line source
paul@3234 1 # SliTaz package receipt.
paul@3234 2
paul@3234 3 PACKAGE="xdg-utils"
monghitri@13985 4 VERSION="1.1.0-rc1"
paul@3234 5 CATEGORY="development"
paul@3234 6 SHORT_DESC="Assists desktop integration tasks."
paul@3234 7 MAINTAINER="paul@slitaz.org"
pascal@15601 8 LICENSE="MIT"
monghitri@13985 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
paul@3234 10 WEB_SITE="http://portland.freedesktop.org/wiki/"
paul@3234 11 WGET_URL="http://portland.freedesktop.org/download/$TARBALL"
paul@3234 12
paul@3234 13 # Rules to configure and make the package.
paul@3234 14 compile_rules()
paul@3234 15 {
paul@3234 16 ./configure \
paul@3234 17 $CONFIGURE_ARGS &&
pankso@16218 18 make && make install
paul@3234 19 }
paul@3234 20
paul@3234 21 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@3234 22 genpkg_rules()
paul@3234 23 {
paul@3234 24 mkdir -p $fs/usr
pascal@15601 25 cp -a $install/usr/bin $fs/usr
paul@3234 26 }
paul@3234 27