diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2013-04-19 07:59:11 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-04-19 07:59:11 +0000 |
commit | a604ea3615dc5df1762b7028e56a92ce9a87af45 (patch) | |
tree | 862a60190a4c0f6f51fcb7ae996f9805788541fc /main | |
parent | 90a3e58ac57c07325f0c370aa7ae00369ece1312 (diff) | |
download | aports-a604ea3615dc5df1762b7028e56a92ce9a87af45.tar.bz2 aports-a604ea3615dc5df1762b7028e56a92ce9a87af45.tar.xz |
main/eggdrop: rebuild against tcl-8.6.0
Diffstat (limited to 'main')
-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 } |