wok annotate xorg-xcursorgen/receipt @ rev 21160

Up ufraw (0.22)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 31 15:04:44 2019 +0200 (2019-03-31)
parents f20bb2aafa21
children c9419274b61b
rev   line source
pankso@262 1 # SliTaz package receipt.
pankso@262 2
pankso@262 3 PACKAGE="xorg-xcursorgen"
gokhlayeh@6993 4 VERSION="1.0.4"
pankso@262 5 CATEGORY="x-window"
pankso@262 6 SHORT_DESC="X cursor generator."
pankso@262 7 MAINTAINER="pankso@slitaz.org"
pascal@15579 8 LICENSE="MIT"
pankso@262 9 SOURCE="xcursorgen"
gokhlayeh@6993 10 TARBALL="$SOURCE-$VERSION.tar.bz2"
pascal@20423 11 WEB_SITE="https://www.x.org/"
pankso@262 12 WGET_URL="$XORG_MIRROR/app/$TARBALL"
pankso@16081 13 HOST_ARCH="i486 arm"
pankso@262 14
pascal@15579 15 DEPENDS="xorg-libX11 xorg-libXcursor libpng"
pascal@15579 16 BUILD_DEPENDS="xorg-libX11-dev xorg-libXcursor-dev libpng-dev"
pascal@15579 17
pankso@262 18 # Rules to configure and make the package.
pankso@262 19 compile_rules()
pankso@262 20 {
pankso@262 21 cd $src
pankso@262 22 ./configure \
pankso@262 23 --prefix=/usr \
pankso@262 24 --mandir=/usr/share/man \
pascal@2416 25 $CONFIGURE_ARGS &&
pascal@2416 26 make &&
pascal@15579 27 make DESTDIR=$DESTDIR install
pankso@262 28 }
pankso@262 29
pankso@262 30 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@262 31 genpkg_rules()
pankso@262 32 {
pankso@262 33 mkdir -p $fs/usr
pascal@15579 34 cp -a $install/usr/bin $fs/usr
pankso@262 35 }