diff options
author | tnut <thierryn1 at hispeed dot ch> | 2011-02-01 20:38:41 +0100 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2011-02-01 20:38:41 +0100 |
commit | 86d4f9610afca1ababb81ae4dff1f591aeab3d25 (patch) | |
tree | 570269086b7bed725bc1047480157e39c710c97c /base/aspell/Pkgfile | |
parent | ba7b5885748d0686d5013c5b6b970aeb06b51d6c (diff) | |
download | nutyx-extra-86d4f9610afca1ababb81ae4dff1f591aeab3d25.tar.gz nutyx-extra-86d4f9610afca1ababb81ae4dff1f591aeab3d25.tar.bz2 nutyx-extra-86d4f9610afca1ababb81ae4dff1f591aeab3d25.tar.xz nutyx-extra-86d4f9610afca1ababb81ae4dff1f591aeab3d25.zip |
aspell, pas de dépendances dans base
Diffstat (limited to 'base/aspell/Pkgfile')
-rwxr-xr-x | base/aspell/Pkgfile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/base/aspell/Pkgfile b/base/aspell/Pkgfile new file mode 100755 index 000000000..d8afc0dfb --- /dev/null +++ b/base/aspell/Pkgfile @@ -0,0 +1,23 @@ +# Description: contient un programme interactif de controle syntaxique et la librairie Aspell +# URL: http://aspell.net +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch + +name=aspell +version=0.60.6 +release=1 +source=( http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz) + + +build() { +cd $name-$version +./configure --prefix=/usr \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info +make +make DESTDIR=$PKG install +install -v -m 755 scripts/ispell $PKG/usr/bin/ +install -v -m 755 scripts/spell $PKG/usr/bin/ +rm $PKG/usr/share/info/dir +} + |