wok annotate dtach/receipt @ rev 23939

Add qemu-mipsel
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Sep 12 12:54:45 2020 +0000 (2020-09-12)
parents eb8067417980
children 370da83187ab
rev   line source
pascal@1688 1 # SliTaz package receipt.
pascal@1688 2
pascal@1688 3 PACKAGE="dtach"
Hans-G?nter@20855 4 VERSION="0.9"
pascal@1688 5 CATEGORY="system-tools"
pascal@1688 6 SHORT_DESC="Emulates the detach feature of screen."
pascal@1688 7 MAINTAINER="christophe.paris@free.fr"
pascal@15579 8 LICENSE="GPL2"
Hans-G?nter@20855 9 WEB_SITE="http://dtach.sourceforge.net/"
Hans-G?nter@20855 10
pascal@1688 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@1688 12 WGET_URL="http://downloads.sourceforge.net/dtach/$TARBALL"
pascal@1688 13
pascal@1688 14 # Rules to configure and make the package.
pascal@1688 15 compile_rules()
pascal@1688 16 {
Hans-G?nter@20855 17 ./configure \
Hans-G?nter@20855 18 --prefix=/usr \
Hans-G?nter@20855 19 --infodir=/usr/share/info \
Hans-G?nter@20855 20 --mandir=/usr/share/man \
Hans-G?nter@20855 21 $CONFIGURE_ARGS &&
pascal@1688 22 make || return 1
pascal@1688 23 # no install rules, let's do it by hand
pascal@15579 24 mkdir -p $DESTDIR/usr/bin $DESTDIR/usr/share/man/man1
pascal@15579 25 cp dtach $DESTDIR/usr/bin
pascal@15579 26 cp dtach.1 $DESTDIR/usr/share/man/man1
pascal@1688 27 }
pascal@1688 28
pascal@1688 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1688 30 genpkg_rules()
pascal@1688 31 {
pascal@1688 32 mkdir -p $fs/usr/bin
pascal@15579 33 cp -a $install/usr/bin $fs/usr
pascal@1688 34 }