wok view 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 source
1 # SliTaz package receipt.
3 PACKAGE="xorgxrdp"
4 VERSION="0.2.4"
5 CATEGORY="network"
6 SHORT_DESC="Xorg drivers for xrdp."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.xrdp.org/"
11 WGET_URL="https://github.com/neutrinolabs/xorgxrdp/releases/download/v$VERSION/$TARBALL"
13 BUILD_DEPENDS="autoconf automake libtool pkg-config nasm xorg-server-dev \
14 xrdp-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure --prefix=/usr \
20 --sysconfdir=/etc \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 cp -a $install/* $fs/
30 find $fs/usr -name '*a' -exec rm -f {} \;
31 }