wok view xorg-imake/receipt @ rev 20701

updated airgeddon (3.31 -> 8.12)
author Hans-G?nter Theisgen
date Tue Feb 05 17:16:21 2019 +0100 (2019-02-05)
parents eb8067417980
children f9c3115dcaa8
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-imake"
4 VERSION="1.0.3"
5 CATEGORY="x-window"
6 SHORT_DESC="X imake utility."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 SOURCE="imake"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="https://www.x.org/"
12 WGET_URL="$XORG_MIRROR/util/$TARBALL"
14 DEPENDS="xorg-cf-files"
15 BUILD_DEPENDS="xorg-gccmakedep xorg-makedepend pkg-config xorg-xproto perl"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure --prefix=/usr --mandir=/usr/share/man \
22 $CONFIGURE_ARGS
23 make
24 make DESTDIR=$DESTDIR install
25 chmod +x $DESTDIR/usr/bin/*
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/bin $fs/usr
33 }