updated on Sun Jan 22 16:00:49 UTC 2012
[aur-mirror.git] / hello / PKGBUILD
blob27320a7e92900ae9e90144ee9dc72d9ce23e1cb2
1 # Contributor: Jonathan Liu <net147@gmail.com>
2 pkgname=hello
3 pkgver=2.7
4 pkgrel=1
5 pkgdesc="The GNU Hello program produces a familiar, friendly greeting"
6 arch=('i686' 'x86_64')
7 url="http://www.gnu.org/software/hello/"
8 license=('GPL3')
9 depends=('glibc')
10 source=("http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz")
11 md5sums=('7e746143ede48ea531bc7b120c8b42d9')
13 build() {
14   cd "${srcdir}/${pkgname}-${pkgver}"
15   ./configure --prefix=/usr
16   make
19 package() {
20   cd "${srcdir}/${pkgname}-${pkgver}"
21   make DESTDIR="${pkgdir}" install
22   rm -f "${pkgdir}/usr/share/info/dir"
25 # vim:set ts=2 sw=2 et: