wok annotate aspell-id/receipt @ rev 13429

partclone: add btrfs & hfsplus support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 04 11:53:21 2012 +0200 (2012-10-04)
parents
children 191b99ca9dc2
rev   line source
erjo@4716 1 # SliTaz package receipt.
erjo@4716 2
erjo@4716 3 PACKAGE="aspell-id"
erjo@4716 4 VERSION="1.2-0"
erjo@4716 5 CATEGORY="system-tools"
erjo@4716 6 SHORT_DESC="Indonesian 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="aspell5-id"
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/id/$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