blob: 9a8e6a047f030e0113d38e2bea2a3c89d3d911b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Description: Boîte à outils multiplatforme C++
# URL: http://www.fltk.org/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: libjpeg libpng xorg-libxft xorg-libxi xorg-libxinerama mesa3d
# Run on: libjpeg,libpng,xorg-libxft,xorg-libxi,xorg-libxinerama,mesa3d
name=fltk
version=r8514
release=1
source=(http://ftp.easysw.com/pub/fltk/snapshots/fltk-2.0.x-$version.tar.bz2\
http://nutyx.meticul.eu/files/patchs/$name/libpng14.patch)
build() {
cd $name-*
# patch -Np1 -i ../libpng14.patch
./configure --prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--enable-threads \
--enable-shared \
--enable-xft
sed -i "s/glut\ test/glut/" Makefile
make
make -e prefix=$PKG/usr mandir=$PKG/usr/share/man install
rm -rf $PKG/usr/share/doc
}
|