• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1pkgname=hello
2pkgver=1
3pkgrel=1
4pkgdesc="Simple hello world program to exercise debuginfod"
5arch=('x86_64')
6source=('hello.c')
7sha256sums=('f85badd2007451bbda4791e7fe820b41be0a424172a567573511688bff975235')
8
9# guarantee that split debug packages are turned on
10options=('strip' 'debug')
11
12build() {
13    # implicit Makefile
14    make hello
15}
16
17package() {
18    install -Dm755 hello "${pkgdir}"/usr/bin/hello
19}
20