mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-17 01:00:06 +02:00
27 lines
505 B
Plaintext
27 lines
505 B
Plaintext
DESCRIPTION="popt"
|
|
HOMEPAGE="http://rpm5.org/files/popt/"
|
|
SRC_URI="http://rpm5.org/files/popt/popt-1.16.tar.gz"
|
|
REVISION="1"
|
|
STATUS_HAIKU="stable"
|
|
DEPEND=""
|
|
CHECKSUM_MD5="3743beefa3dd6247a73f8f7a32c14c33"
|
|
BUILD()
|
|
{
|
|
cd popt-1.16
|
|
libtoolize --force --copy --install
|
|
echo 'AC_CONFIG_MACRO_DIR([m4])' >> configure.ac
|
|
aclocal -I m4
|
|
autoconf
|
|
automake
|
|
./configure --prefix=`finddir B_COMMON_DIRECTORY`
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd popt-1.16
|
|
make install
|
|
}
|
|
|
|
LICENSE="MIT"
|
|
COPYRIGHT="1998-2002 Red Hat, Inc." |