mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
30 lines
677 B
Bash
30 lines
677 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer Inkane <neoinkaneglade@aol.com>
|
|
# contribtutor Justinas Lelys <justinas@lelys.lt>
|
|
|
|
pkgname=whois
|
|
pkgver=5.1.3
|
|
pkgrel=1
|
|
pkgdesc="The whois client by Marco d'Itri"
|
|
arch=('x86_64')
|
|
url="http://www.linux.it/~md/software/"
|
|
license=('GPL')
|
|
depends=('libidn')
|
|
makedepends=('perl')
|
|
source=("http://ftp.debian.org/debian/pool/main/w/whois/whois_${pkgver}.tar.xz")
|
|
md5sums=('2817d6065bbd8f274a3e5240e0bf7dd5')
|
|
|
|
build() {
|
|
cd "${srcdir}/whois-${pkgver}"
|
|
|
|
make prefix=/usr CFLAGS="$CFLAGS" HAVE_LIBIDN=1
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/whois-${pkgver}"
|
|
|
|
make prefix=/usr BASEDIR="${pkgdir}" install-whois
|
|
}
|