File PKGBUILD of Package helloworld
# Maintainer: Dominik Heidler <dheidler@gmail.com>
pkgname=helloworld
pkgver=0
pkgrel=0
pkgdesc="Hello World"
arch=(any)
url="https://github.com/asdil12/helloworld"
license=('GPL')
groups=()
provides=()
depends=('python3')
makedepends=('git')
source=("helloworld-${pkgver}.tar.bz2")
md5sums=('SKIP')
package() {
cd "$srcdir/helloworld-${pkgver}/"
install -D -m755 ./hello.py $pkgdir/usr/bin/hello.py
}