# HG changeset patch # User Paul Issott # Date 1233172560 0 # Node ID 474dcad1ab6a47c4689a1a98531b594f6ae033a8 # Parent 86e1f69774d015625916caa03bf904551ac85724 Add: aspell diff -r 86e1f69774d0 -r 474dcad1ab6a aspell-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/aspell-dev/receipt Wed Jan 28 19:56:00 2009 +0000 @@ -0,0 +1,19 @@ +# SliTaz package receipt. + +PACKAGE="aspell-dev" +VERSION="0.60.6" +CATEGORY="development" +SHORT_DESC="GNU spell checker devel files." +MAINTAINER="paul@slitaz.org" +WEB_SITE="http://aspell.net/" +WANTED="aspell" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + # Hard coded + mkdir -p $fs/usr/lib/aspell-0.60 + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib + cp -a $_pkg/usr/include $fs/usr + cp -a $_pkg/usr/lib/aspell*/*.*a $fs/usr/lib/aspell-0.60 +} \ No newline at end of file diff -r 86e1f69774d0 -r 474dcad1ab6a aspell/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/aspell/receipt Wed Jan 28 19:56:00 2009 +0000 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="aspell" +VERSION="0.60.6" +CATEGORY="system-tools" +SHORT_DESC="GNU spell checker." +MAINTAINER="paul@slitaz.org" +DEPENDS="" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://aspell.net/" +WGET_URL="ftp://ftp.gnu.org/gnu/aspell/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr --infodir=/usr/share/info \ + --mandir=/usr/share/man $CONFIGURE_ARGS && \ + make && make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib + cp -a $_pkg/usr/lib/aspell* $fs/usr/lib + # Remove unneeded files + rm -f $fs/usr/lib/aspell*/*.*a +} +