index : devtools32 | |
Archlinux32 fork of devtools | gitolite user |
summaryrefslogtreecommitdiff |
author | Levente Polyak <anthraxx@archlinux.org> | 2022-05-19 23:49:02 +0200 |
---|---|---|
committer | Levente Polyak <anthraxx@archlinux.org> | 2022-06-22 01:05:03 +0200 |
commit | 37df0765d284892bf81bddf575fdcb14582b4f5f (patch) | |
tree | aa25d7cc11e95f4f11fc846a1c1a4bf22d337d72 /contrib | |
parent | 6d946989f3ca7de78ccda98804bb72aec3692412 (diff) |
-rw-r--r-- | contrib/makepkg/PKGBUILD.proto | 48 |
diff --git a/contrib/makepkg/PKGBUILD.proto b/contrib/makepkg/PKGBUILD.proto new file mode 100644 index 0000000..e8690e4 --- /dev/null +++ b/contrib/makepkg/PKGBUILD.proto @@ -0,0 +1,48 @@ +#!/hint/bash +# shellcheck disable=2034 + +# This is an example PKGBUILD file, so that shellcheck can know what +# variables to expect be set after including a PKGBUILD. + +# Maintainer: Your Name <youremail@domain.com> +pkgname=NAME +pkgver=VERSION +pkgrel=1 +epoch= +pkgdesc="" +arch=() +url="" +license=('GPL') +groups=() +depends=() +makedepends=() +checkdepends=() +optdepends=() +provides=() +conflicts=() +replaces=() +backup=() +options=() +install= +changelog= +source=("$pkgname-$pkgver.tar.gz" + "$pkgname-$pkgver.patch") +noextract=() +md5sums=() +validpgpkeys=() + +prepare() { + : +} + +build() { + : +} + +check() { + : +} + +package() { + : +} |