diff options
Diffstat (limited to 'main/eggdrop')
-rw-r--r-- | main/eggdrop/APKBUILD | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/main/eggdrop/APKBUILD b/main/eggdrop/APKBUILD index 7c07354347..fa6060c48e 100644 --- a/main/eggdrop/APKBUILD +++ b/main/eggdrop/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Carlo Landmeter <clandmeter@gmail.com> pkgname=eggdrop pkgver=1.6.21 -pkgrel=0 +pkgrel=1 pkgdesc="World's most popular Open Source IRC bot" url="http://www.eggheads.org/" arch="all" @@ -28,7 +28,10 @@ prepare() { build() { cd "$_builddir" - ./configure --prefix=/usr + ./configure --prefix=/usr \ + --with-tcllib=/usr/lib/libtcl8.6.so \ + --with-tclinc=/usr/include/tcl.h \ + || return 1 make config || return 1 make -j1 || return 1 } |