wok annotate aspell-pt_BR/receipt @ rev 7674

Fixed linux. Need to make folder PWD/_pkg before adding bzImage to it. Also i'm force copying kernel config file now so we have the right config. It is copyed twice so its needed and doesn't hunt anything i think.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Dec 16 17:16:06 2010 +0000 (2010-12-16)
parents
children 191b99ca9dc2
rev   line source
paul@2111 1 # SliTaz package receipt.
paul@2111 2
paul@2111 3 PACKAGE="aspell-pt_BR"
paul@2111 4 VERSION="20080707-0"
paul@2111 5 CATEGORY="system-tools"
paul@2111 6 SHORT_DESC="Brazilian aspell dictionary."
paul@2111 7 MAINTAINER="paul@slitaz.org"
paul@2111 8 DEPENDS="aspell"
paul@2111 9 BUILD_DEPENDS="aspell aspell-dev"
paul@2111 10 SOURCE="aspell6-pt_BR"
paul@2111 11 TARBALL="$SOURCE-$VERSION.tar.bz2"
paul@2111 12 WEB_SITE="ftp://ftp.gnu.org/gnu/aspell/dict/0index.html"
paul@2111 13 WGET_URL="ftp://ftp.gnu.org/gnu/aspell/dict/pt_BR/$TARBALL"
paul@2111 14
paul@2111 15 # Rules to configure and make the package.
paul@2111 16 compile_rules()
paul@2111 17 {
paul@2111 18 cd $src
paul@2111 19 ./configure && \
paul@2111 20 make && make DESTDIR=$PWD/_pkg install
paul@2111 21 }
paul@2111 22
paul@2111 23 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@2111 24 genpkg_rules()
paul@2111 25 {
paul@2111 26 mkdir -p $fs/usr/lib
paul@2111 27 cp -a $_pkg/usr/lib/* $fs/usr/lib
paul@2111 28 }