wok view xorgxrdp/receipt @ rev 21600

Up: smplayer(19.5.0), xine-lib(1.2.9), xine-ui(0.99.10)
author maniac
date Thu May 23 12:16:28 2019 +0300 (2019-05-23)
parents b26680424a50
children affca4d9e9a8
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 DEPENDS="xorg-server"
14 BUILD_DEPENDS="autoconf automake libtool pkg-config nasm xorg-server-dev \
15 xrdp-dev"
16 SUGGESTED="xrdp"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure --prefix=/usr \
22 --sysconfdir=/etc \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $install/usr/share/doc $fs/usr
32 cp -a $src/*.md $src/COPYING $install/usr/share/doc
33 cp -a $install/usr/lib $fs/usr
34 cp -a $install/etc $fs/
35 find $fs/usr -name '*a' -exec rm -f {} \;
36 }