wok view xorg-iceauth/receipt @ rev 23975
Up matio (1.5.18), mutt (1.14.7), nasm (2.15.05), net-snmp (5.9), nethack (3.6.6)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Oct 28 17:24:13 2020 +0000 (2020-10-28) |
parents | eb8067417980 |
children | 5d79829fa876 |
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-iceauth"
4 VERSION="1.0.8"
5 CATEGORY="x-window"
6 SHORT_DESC="ICE authority file utility."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://www.x.org/wiki/"
11 SOURCE="iceauth"
12 TARBALL="$SOURCE-$VERSION.tar.bz2"
13 WGET_URL="https://xorg.freedesktop.org/archive/individual/app/$TARBALL"
15 DEPENDS="xorg-libICE"
16 BUILD_DEPENDS="pkg-config xorg-libICE-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --prefix=/usr \
23 --infodir=/usr/share/info \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr
34 cp -a $install/usr/bin $fs/usr
35 }