wok annotate aspell-da/receipt @ rev 22204

linld: 8086 may load zImage (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Nov 11 12:29:56 2019 +0100 (2019-11-11)
parents 83e7bd2d484e
children 099a66084bd8
rev   line source
paul@6385 1 # SliTaz package receipt.
paul@6385 2
paul@6385 3 PACKAGE="aspell-da"
paul@6385 4 VERSION="1.4.42-1"
paul@6385 5 CATEGORY="system-tools"
paul@6385 6 SHORT_DESC="Danish aspell dictionary."
paul@6385 7 MAINTAINER="paul@slitaz.org"
pascal@15361 8 LICENSE="GPL2"
paul@6385 9 SOURCE="aspell5-da"
paul@6385 10 TARBALL="$SOURCE-$VERSION.tar.bz2"
paul@6385 11 WEB_SITE="ftp://ftp.gnu.org/gnu/aspell/dict/0index.html"
paul@6385 12 WGET_URL="ftp://ftp.gnu.org/gnu/aspell/dict/da/$TARBALL"
paul@6385 13
pascal@15361 14 DEPENDS="aspell"
pascal@15361 15 BUILD_DEPENDS="aspell aspell-dev"
pascal@15361 16
paul@6385 17 # Rules to configure and make the package.
paul@6385 18 compile_rules()
paul@6385 19 {
paul@6385 20 cd $src
paul@6385 21 ./configure && \
pascal@15361 22 make && make DESTDIR=$DESTDIR install
paul@6385 23 }
paul@6385 24
paul@6385 25 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@6385 26 genpkg_rules()
paul@6385 27 {
paul@6385 28 mkdir -p $fs/usr/lib
pascal@15361 29 cp -a $install/usr/lib/* $fs/usr/lib
paul@6385 30 }
paul@6385 31