diff --git a/packages/devel/libevent/build b/packages/devel/libevent/build new file mode 100755 index 0000000000..6a37aac5fe --- /dev/null +++ b/packages/devel/libevent/build @@ -0,0 +1,19 @@ +#!/bin/sh + +. config/options $1 + +$SCRIPTS/build toolchain + +cd $PKG_BUILD +./configure --host=$TARGET_NAME \ + --build=$HOST_NAME \ + --prefix=/usr \ + --exec-prefix=/usr \ + --sysconfdir=/etc \ + --datadir=/usr/share \ + --enable-shared \ + --disable-static \ + +make + +$MAKEINSTALL diff --git a/packages/devel/libevent/install b/packages/devel/libevent/install new file mode 100755 index 0000000000..f90efd0db0 --- /dev/null +++ b/packages/devel/libevent/install @@ -0,0 +1,7 @@ +#!/bin/sh + +. config/options $1 + +mkdir -p $INSTALL/usr/lib + cp -P $PKG_BUILD/.libs/libevent*.so* $INSTALL/usr/lib + diff --git a/packages/devel/libevent/url b/packages/devel/libevent/url new file mode 100644 index 0000000000..9affba6d71 --- /dev/null +++ b/packages/devel/libevent/url @@ -0,0 +1 @@ +http://monkey.org/~provos/libevent-1.4.14b-stable.tar.gz \ No newline at end of file