summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4d7b7429ac3f9a75488e26cc688d31441ac78271 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: Matthew Sexton <mssxtn@gmail.com
#contributor: Michał Wojdyła < micwoj9292 at gmail dot com >
#Contributor: leo <leotemplin@yahoo.de>
pkgname=hello
pkgver=2.12.1
pkgrel=2
pkgdesc="Prints Hello World and more"
arch=(i686 x86_64)
url='https://www.gnu.org/software/hello/'
license=('GPL')

source=(https://ftp.gnu.org/gnu/hello/$pkgname-$pkgver.tar.gz)
md5sums=('5cf598783b9541527e17c9b5e525b7eb')

build(){
cd "$pkgname-$pkgver"
./configure --prefix=/usr
make
}
package(){
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}