wok view xdg-utils/receipt @ rev 15601

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Dec 05 20:23:08 2013 +0000 (2013-12-05)
parents cf385e3cb95d
children d6b99c62ef00
line source
1 # SliTaz package receipt.
3 PACKAGE="xdg-utils"
4 VERSION="1.1.0-rc1"
5 CATEGORY="development"
6 SHORT_DESC="Assists desktop integration tasks."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="MIT"
9 DEPENDS=""
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://portland.freedesktop.org/wiki/"
12 WGET_URL="http://portland.freedesktop.org/download/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 #while read file; do
19 #[ -f done.$file ] && continue
20 #echo "Apply $file..."
21 #patch -p1 < $stuff/$file || return 1
22 #touch done.$file
23 #done <<EOT
24 #xdg-open-chrome.patch
25 #EOT
26 ./configure \
27 --prefix=/usr \
28 --infodir=/usr/share/info \
29 --mandir=/usr/share/man \
30 $CONFIGURE_ARGS &&
31 make && make DESTDIR=$DESTDIR install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr
38 cp -a $install/usr/bin $fs/usr
39 }