wok annotate lha/receipt @ rev 22344

Remove squirrelmail-en_GB
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Nov 17 16:39:12 2019 +0100 (2019-11-17)
parents 38d36643bb08
children ede1d184d5c5
rev   line source
pascal@2645 1 # SliTaz package receipt.
pascal@2645 2
pascal@2645 3 PACKAGE="lha"
pascal@2645 4 VERSION="1.14i-ac20050924p1"
pascal@2645 5 CATEGORY="system-tools"
pascal@2645 6 SHORT_DESC="File archiver."
pascal@2645 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15472 8 LICENSE="CC-SA"
pascal@2645 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@2645 10 WEB_SITE="http://$PACKAGE.sourceforge.jp/"
pascal@2645 11 WGET_URL="http://osdn.dl.sourceforge.jp/$PACKAGE/22231/$TARBALL"
pascal@2645 12
pascal@2645 13 # Rules to configure and make the package.
pascal@2645 14 compile_rules()
pascal@2645 15 {
pascal@2645 16 cd $src
pascal@2645 17 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@2645 18 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@2645 19 make &&
pascal@15472 20 make DESTDIR=$DESTDIR install
pascal@2645 21 }
pascal@2645 22
pascal@2645 23 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@2645 24 genpkg_rules()
pascal@2645 25 {
pascal@2645 26 mkdir -p $fs/usr
pascal@15472 27 cp -a $install/usr/bin $fs/usr
pascal@2645 28 }
pascal@2645 29