core/libidn/PKGBUILD

25 lines
583 B
Bash
Raw Normal View History

# Maintainer: abveritas@chakra-project.org
2010-03-14 23:48:48 +08:00
pkgname=libidn
2015-08-11 06:41:32 +08:00
pkgver=1.32
2010-03-14 23:48:48 +08:00
pkgrel=1
pkgdesc="Implementation of the Stringprep, Punycode and IDNA specifications"
url="http://www.gnu.org/software/libidn/"
arch=('x86_64')
2010-03-14 23:48:48 +08:00
license=('GPL3' 'LGPL')
depends=('glibc' 'texinfo')
2015-08-11 06:41:32 +08:00
source=(http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz)
2010-03-14 23:48:48 +08:00
install=libidn.install
2015-08-11 06:41:32 +08:00
sha1sums=('ddd018611b98af7c67d434aa42d15d39f45129f5')
2010-03-14 23:48:48 +08:00
build() {
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr
2015-08-11 06:41:32 +08:00
make
}
2010-03-14 23:48:48 +08:00
package() {
cd ${srcdir}/${pkgname}-${pkgver}
2015-08-11 06:41:32 +08:00
make DESTDIR=${pkgdir} install
2010-03-14 23:48:48 +08:00
}