repo.or.cz
/
minipack.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
glib: Allow cross-building with native glib 2.24.
[minipack.git]
/
recipes
/
gd.recipe
blob
c9588a36e74c6b6d4fa76bd930c4625b062f0858
1
name=gd
2
version=2.0.35
3
release=1
4
download=http://www.libgd.org/releases
5
6
configure_opt="
7
--disable-static
8
--enable-shared
9
--without-x
10
"
11
12
src_prep()
13
{
14
autoreconf -ivf
15
}
16
17
# Compatibility with existing binary package
18
src_install()
19
{
20
do_install
21
22
case "$host" in
23
*mingw*) ln -f $resultdir/lib/libgd.dll.a $resultdir/lib/bgd.lib ;;
24
esac
25
26
mkdir -p $local_tooldir
27
cp $tooldir/tool.template $local_tooldir/gdlib-config
28
}
29