Welcome to mirror list, hosted at ThFree Co, Russian Federation.

libproxy.py « packages - github.com/mono/bockbuild.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f3f6279d5de2efb3da41984e91e1c8bb51d7e770 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Package ('libproxy', '0.4.6',
	sources = [
		'http://libproxy.googlecode.com/files/%{name}-%{version}.tar.gz'
	],

	override_properties = {
		'configure': 'cmake '
			'-DCMAKE_INSTALL_PREFIX=%{prefix} '
			'-DBIN_INSTALL_DIR=%{prefix}/bin '
			'-DLIB_INSTALL_DIR=%{prefix}/lib '
			'-DMODULE_INSTALL_DIR=%{prefix}/lib/libproxy-%{version}/modules '
			'-DLIBEXEC_INSTALL_DIR=%{prefix}/lib/libproxy-%{version} '
			'.',

		'makeinstall': 'make install DESTDIR=%{prefix}'
	}
)