wok annotate aspell-hu/receipt @ rev 6653

Fixed gdk-pixbuf. Added xpm and jpeg to be build into gdk-pixbuf instead of being just plugins. Fixes some missing icons and background from being missig in slitaz desktop.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Oct 11 01:06:19 2010 +0000 (2010-10-11)
parents
children 191b99ca9dc2
rev   line source
erjo@4716 1 # SliTaz package receipt.
erjo@4716 2
erjo@4716 3 PACKAGE="aspell-hu"
erjo@4716 4 VERSION="0.99.4.2-0"
erjo@4716 5 CATEGORY="system-tools"
erjo@4716 6 SHORT_DESC="Hungarian aspell dictionary."
erjo@4716 7 MAINTAINER="erjo@slitaz.org"
erjo@4716 8 DEPENDS="aspell"
erjo@4716 9 BUILD_DEPENDS="aspell aspell-dev"
erjo@4716 10 SOURCE="aspell6-hu"
erjo@4716 11 TARBALL="$SOURCE-$VERSION.tar.bz2"
erjo@4716 12 WEB_SITE="ftp://ftp.gnu.org/gnu/aspell/dict/0index.html"
erjo@4716 13 WGET_URL="ftp://ftp.gnu.org/gnu/aspell/dict/hu/$TARBALL"
erjo@4716 14
erjo@4716 15 # Rules to configure and make the package.
erjo@4716 16 compile_rules()
erjo@4716 17 {
erjo@4716 18 cd $src
erjo@4716 19 ./configure && \
erjo@4716 20 make && make DESTDIR=$PWD/_pkg install
erjo@4716 21 }
erjo@4716 22
erjo@4716 23 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@4716 24 genpkg_rules()
erjo@4716 25 {
erjo@4716 26 mkdir -p $fs/usr/lib
erjo@4716 27 cp -a $_pkg/usr/lib/* $fs/usr/lib
erjo@4716 28 }
erjo@4716 29
erjo@4716 30