wok view xorgxrdp/receipt @ rev 22040

updated tokyocabinet and tokyocabinet-dev (1.4.32 -> 1.4.48)
author Hans-G?nter Theisgen
date Mon Oct 21 17:24:12 2019 +0100 (2019-10-21)
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 }