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
|