wok diff xorgxrdp/receipt @ rev 20063

Up xrdp (0.9.3.1), add xorgxrdp
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Sep 22 21:42:40 2017 +0200 (2017-09-22)
parents
children b26680424a50
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/xorgxrdp/receipt	Fri Sep 22 21:42:40 2017 +0200
     1.3 @@ -0,0 +1,31 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="xorgxrdp"
     1.7 +VERSION="0.2.4"
     1.8 +CATEGORY="network"
     1.9 +SHORT_DESC="Xorg drivers for xrdp."
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +LICENSE="MIT"
    1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.13 +WEB_SITE="http://www.xrdp.org/"
    1.14 +WGET_URL="https://github.com/neutrinolabs/xorgxrdp/releases/download/v$VERSION/$TARBALL"
    1.15 +
    1.16 +BUILD_DEPENDS="autoconf automake libtool pkg-config nasm xorg-server-dev \
    1.17 +xrdp-dev"
    1.18 +
    1.19 +# Rules to configure and make the package.
    1.20 +compile_rules()
    1.21 +{
    1.22 +	./configure --prefix=/usr \
    1.23 +		--sysconfdir=/etc \
    1.24 +		$CONFIGURE_ARGS &&
    1.25 +	make &&
    1.26 +	make DESTDIR=$DESTDIR install
    1.27 +}
    1.28 +
    1.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.30 +genpkg_rules()
    1.31 +{
    1.32 +	cp -a $install/* $fs/
    1.33 +	find $fs/usr -name '*a' -exec rm -f {} \;
    1.34 +}