wok annotate xorgxrdp/receipt @ rev 21074

updated jasper again (1.900.1 -> 2.0.16)
author Hans-G?nter Theisgen
date Thu Mar 14 17:22:53 2019 +0100 (2019-03-14)
parents d3852d2a7903
children aa52400acd4d
rev   line source
pascal@20063 1 # SliTaz package receipt.
pascal@20063 2
pascal@20063 3 PACKAGE="xorgxrdp"
pascal@20063 4 VERSION="0.2.4"
pascal@20063 5 CATEGORY="network"
pascal@20063 6 SHORT_DESC="Xorg drivers for xrdp."
pascal@20063 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@20063 8 LICENSE="MIT"
pascal@20063 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@20063 10 WEB_SITE="http://www.xrdp.org/"
pascal@20063 11 WGET_URL="https://github.com/neutrinolabs/xorgxrdp/releases/download/v$VERSION/$TARBALL"
pascal@20063 12
pascal@20064 13 DEPENDS="xorg-server"
pascal@20063 14 BUILD_DEPENDS="autoconf automake libtool pkg-config nasm xorg-server-dev \
pascal@20063 15 xrdp-dev"
pascal@20063 16
pascal@20063 17 # Rules to configure and make the package.
pascal@20063 18 compile_rules()
pascal@20063 19 {
pascal@20063 20 ./configure --prefix=/usr \
pascal@20063 21 --sysconfdir=/etc \
pascal@20063 22 $CONFIGURE_ARGS &&
pascal@20063 23 make &&
pascal@20063 24 make DESTDIR=$DESTDIR install
pascal@20063 25 }
pascal@20063 26
pascal@20063 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@20063 28 genpkg_rules()
pascal@20063 29 {
pascal@20064 30 mkdir -p $install/usr/share/doc
pascal@20064 31 cp -a $src/*.md $src/COPYING $install/usr/share/doc
pascal@20063 32 cp -a $install/* $fs/
pascal@20063 33 find $fs/usr -name '*a' -exec rm -f {} \;
pascal@20063 34 }