blob: 5d823446cde7bc0ec8011af139b6bba2ed34012c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Description: Librairie GUI pour développer des interfaces graphiques et autres
# URL: http://www.fox-toolkit.org/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: xorg-libxcursor, xorg-libxft, xorg-libxrandr, mesa3d, libcups
# Run on: xorg-libxcursor,xorg-libxft,xorg-libxrandr,mesa3d,libcups
name=fox
version=1.6.37
release=1
source=(http://www.fox-toolkit.org/ftp/$name-$version.tar.gz)
build() {
cd $name-$version
CPPFLAGS="$CPPFLAGS -I/usr/include/freetype2"
./configure --prefix=/usr \
--mandir=/usr/share/man \
--with-xft=yes \
--with-opengl=yes
make
make DESTDIR=$PKG install
}
|