mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-22 03:30:05 +02:00
29 lines
687 B
Plaintext
29 lines
687 B
Plaintext
DESCRIPTION="glib"
|
|
HOMEPAGE="http://www.gtk.org/"
|
|
SRC_URI="http://ftp.gnome.org/pub/gnome/sources/glib/2.22/glib-2.22.2.tar.gz"
|
|
CHECKSUM_MD5="00eb873975e2ef9361b8177131c7c943"
|
|
REVISION="1"
|
|
STATUS_HAIKU="stable"
|
|
DEPEND=""
|
|
BUILD {
|
|
cd glib-2.22.2
|
|
rm -rf aclocal.m4
|
|
mkdir -p m4
|
|
cp /boot/common/share/aclocal/libtool.m4 m4
|
|
cp /boot/common/share/aclocal/ltoptions.m4 m4
|
|
cp /boot/common/share/aclocal/ltversion.m4 m4
|
|
cp /boot/common/share/aclocal/ltsugar.m4 m4
|
|
cp /boot/common/share/aclocal/lt~obsolete.m4 m4
|
|
libtoolize --force --copy --install
|
|
aclocal -I m4
|
|
# automake
|
|
autoconf
|
|
./configure --prefix=`finddir B_COMMON_DIRECTORY`
|
|
make
|
|
}
|
|
|
|
INSTALL {
|
|
cd glib-2.22.2
|
|
make install
|
|
}
|