contrib/libidn/Pkgfile

26 lines
552 B
Plaintext
Raw Normal View History

2006-11-23 17:17:10 +01: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
2007-04-01 10:20:04 +02:00
version=0.6.11
2006-11-23 17:17:10 +01:00
release=1
source=(ftp://alpha.gnu.org/pub/gnu/libidn/libidn-$version.tar.gz)
build() {
2007-03-06 15:23:21 +01:00
cd libidn-$version
2006-11-23 17:17:10 +01:00
./configure \
--prefix=/usr \
2006-12-04 15:15:32 +01:00
--mandir=/usr/man \
--enable-csharp=mono \
2006-11-23 17:17:10 +01:00
--disable-nls
2007-03-06 15:23:21 +01:00
make
make DESTDIR=$PKG install
2007-04-01 10:20:04 +02:00
rm -rf $PKG/usr/share/info
2006-11-23 17:17:10 +01:00
}