wok view xorgxrdp/receipt @ rev 22434

Add sshrc (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Dec 21 12:20:01 2019 +0100 (2019-12-21)
parents aa52400acd4d
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="xorgxrdp"
4 VERSION="0.2.11"
5 CATEGORY="network"
6 SHORT_DESC="Xorg drivers for xrdp."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="http://www.xrdp.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/neutrinolabs/$PACKAGE/releases/download/v$VERSION/$TARBALL"
14 SUGGESTED="xrdp"
15 DEPENDS="xorg-server"
16 BUILD_DEPENDS="autoconf automake libtool nasm pkg-config
17 xorg-server-dev xrdp-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --prefix=/usr \
24 --sysconfdir=/etc \
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 $install/usr/share/doc
34 mkdir -p $fs/usr
36 cp -a $src/*.md $src/COPYING $install/usr/share/doc
37 cp -a $install/usr/lib $fs/usr
38 cp -a $install/etc $fs/
40 find $fs/usr -name '*a' -exec rm -f {} \;
41 }