wok-stable annotate aspell-nl/receipt @ rev 7666

Moved Module.sysvers to Module.sysvers-modules. This is cause i think making linux-without-modules bzImage is was change that file. Removed /usr/src/linux in pre_remove function in linux-module-headers. Added /usr/src/linux soft link to post_install in linux-module-headers.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Dec 16 12:59:54 2010 +0000 (2010-12-16)
parents
children
rev   line source
paul@7225 1 # SliTaz package receipt.
paul@7225 2
paul@7225 3 PACKAGE="aspell-nl"
paul@7225 4 VERSION="0.50-2"
paul@7225 5 CATEGORY="system-tools"
paul@7225 6 SHORT_DESC="Dutch aspell dictionary."
paul@7225 7 MAINTAINER="paul@slitaz.org"
paul@7225 8 DEPENDS="aspell"
paul@7225 9 BUILD_DEPENDS="aspell aspell-dev"
paul@7225 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
paul@7225 11 WEB_SITE="ftp://ftp.gnu.org/gnu/aspell/dict/0index.html"
paul@7225 12 WGET_URL="ftp://ftp.gnu.org/gnu/aspell/dict/nl/$TARBALL"
paul@7225 13
paul@7225 14 # Rules to configure and make the package.
paul@7225 15 compile_rules()
paul@7225 16 {
paul@7225 17 cd $src
paul@7225 18 ./configure && \
paul@7225 19 make && make DESTDIR=$PWD/_pkg install
paul@7225 20 }
paul@7225 21
paul@7225 22 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@7225 23 genpkg_rules()
paul@7225 24 {
paul@7225 25 mkdir -p $fs/usr
paul@7225 26 cp -a $_pkg/usr/lib $fs/usr
paul@7225 27 }
paul@7225 28