blob: 63fd4c3122163419447de26986382bfde2c519ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Description: Librairie permettant de découvrir le proxy
# URL: http://code.google.com/p/libproxy
# Maintainer: NutyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: gconf, xulrunner
name=libproxy
version=0.2.3
release=1
source=(http://libproxy.googlecode.com/files/$name-$version.tar.gz)
build() {
cd $name-$version
mozjs_CFLAGS="-DXP_UNIX -DJS_THREADSAFE \
-I/usr/include/xulrunner-1.9.1.3/unstable/" ./configure --prefix=/usr
make
make DESTDIR=$PKG install
}
|