1
0
forked from ports/contrib
contrib/libidn/Pkgfile

26 lines
544 B
Plaintext
Raw Normal View History

2006-11-24 03:17:10 +11:00
# Description: Provides support for IETF Internationalized Domain Names (IDN).
# URL: http://www.gnu.org/software/libidn/
# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
# Packager: Daniel Mueller, daniel at danm dot de
# Depends on:
name=libidn
2008-03-20 08:21:00 +11:00
version=1.6
2006-11-24 03:17:10 +11:00
release=1
source=(ftp://alpha.gnu.org/pub/gnu/libidn/libidn-$version.tar.gz)
build() {
2007-03-07 01:23:21 +11:00
cd libidn-$version
2006-11-24 03:17:10 +11:00
./configure \
--prefix=/usr \
2006-12-05 01:15:32 +11:00
--mandir=/usr/man \
--disable-nls \
2007-10-03 10:50:22 +10:00
--disable-static
2006-11-24 03:17:10 +11:00
2007-03-07 01:23:21 +11:00
make
make DESTDIR=$PKG install
2008-01-12 12:30:54 +11:00
rm -r $PKG/usr/share/info
2006-11-24 03:17:10 +11:00
}