diff options
Diffstat (limited to 'extra/lesstif/Pkgfile')
-rwxr-xr-x | extra/lesstif/Pkgfile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/extra/lesstif/Pkgfile b/extra/lesstif/Pkgfile new file mode 100755 index 000000000..395698738 --- /dev/null +++ b/extra/lesstif/Pkgfile @@ -0,0 +1,25 @@ +# Description: Version libre de OSF/Motif +# URL: http://www.littlecms.com +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch +# Depends on: freetype + +name=lesstif +version=0.95.0 +release=3 +source=( http://downloads.sourceforge.net/$name/$name-$version.tar.bz2\ + c++fix.patch scroll.patch) + + +build() { + cd $name-$version + patch -Np1 -i ../scroll.patch + patch -Np1 -i ../c++fix.patch + ./configure --prefix=/usr \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info + make + make DESTDIR=$PKG install + # Remove this file because belong to perl allready + rm $PKG/usr/share/man/man3/Shell.3 +} |