wok annotate xorgxrdp/receipt @ rev 22054

updated ttf-dejavu and ttf-dejavu-extra (2.35 -> 2.37)
author Hans-G?nter Theisgen
date Wed Oct 23 15:28:01 2019 +0100 (2019-10-23)
parents b26680424a50
children affca4d9e9a8
rev   line source
pascal@20063 1 # SliTaz package receipt.
pascal@20063 2
pascal@20063 3 PACKAGE="xorgxrdp"
pascal@20063 4 VERSION="0.2.4"
pascal@20063 5 CATEGORY="network"
pascal@20063 6 SHORT_DESC="Xorg drivers for xrdp."
pascal@20063 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@20063 8 LICENSE="MIT"
pascal@20063 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@20063 10 WEB_SITE="http://www.xrdp.org/"
pascal@20063 11 WGET_URL="https://github.com/neutrinolabs/xorgxrdp/releases/download/v$VERSION/$TARBALL"
pascal@20063 12
pascal@20064 13 DEPENDS="xorg-server"
pascal@20063 14 BUILD_DEPENDS="autoconf automake libtool pkg-config nasm xorg-server-dev \
pascal@20063 15 xrdp-dev"
pascal@21522 16 SUGGESTED="xrdp"
pascal@20063 17
pascal@20063 18 # Rules to configure and make the package.
pascal@20063 19 compile_rules()
pascal@20063 20 {
pascal@20063 21 ./configure --prefix=/usr \
pascal@20063 22 --sysconfdir=/etc \
pascal@20063 23 $CONFIGURE_ARGS &&
pascal@20063 24 make &&
pascal@20063 25 make DESTDIR=$DESTDIR install
pascal@20063 26 }
pascal@20063 27
pascal@20063 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@20063 29 genpkg_rules()
pascal@20063 30 {
pascal@21522 31 mkdir -p $install/usr/share/doc $fs/usr
pascal@20064 32 cp -a $src/*.md $src/COPYING $install/usr/share/doc
pascal@21522 33 cp -a $install/usr/lib $fs/usr
pascal@21522 34 cp -a $install/etc $fs/
pascal@20063 35 find $fs/usr -name '*a' -exec rm -f {} \;
pascal@20063 36 }