mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 05:24:42 +08:00
23 lines
539 B
Bash
23 lines
539 B
Bash
pkgname=libidn
|
|
pkgver=1.33
|
|
pkgrel=1
|
|
pkgdesc="Implementation of the Stringprep, Punycode and IDNA specifications"
|
|
url="http://www.gnu.org/software/libidn/"
|
|
arch=('x86_64')
|
|
license=('GPL3' 'LGPL')
|
|
depends=('glibc' 'texinfo')
|
|
source=(http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
install=libidn.install
|
|
sha1sums=('57872fdc665dcc585e16f4ac0bb35374b1103f7e')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make DESTDIR=${pkgdir} install
|
|
}
|