aur-packages/templates/PKGBUILD.base.j2

29 lines
778 B
Plaintext
Raw Normal View History

2019-09-24 11:15:39 +00:00
# Maintainer: Felipe Martin <me@fmartingr.com>
pkgname="{{ name }}"
pkgver="{{ version }}_{{ build_number }}"
pkgrel="{{ aur_build }}"
2019-09-24 11:15:39 +00:00
pkgdesc="{{ description }}"
arch=('{{ arch|join("' '") }}')
url="{{ url }}"
license=('{{ license }}')
depends=({% for depend in depends %}'{{ depend }}' {% endfor %})
optdepends=({% for opt in optdepends %}'{{ opt }}' {% endfor %})
conflicts=({% for conflict in conflicts %}'{{ conflict }}' {% endfor %})
2019-09-24 11:15:39 +00:00
source=()
md5sums=()
2019-09-24 14:18:31 +00:00
{% block sources %}
2019-09-24 11:15:39 +00:00
{% if "i686" in arch %}
source_i686=({{ sources.i686.url }})
md5sums_i686=('{{ sources.i686.md5sum }}')
{% endif %}
{% if "x86_64" in arch %}
source_x86_64=({{ sources.x86_64.url }})
md5sums_x86_64=('{{ sources.x86_64.md5sum }}')
{% endif %}
2019-09-24 14:18:31 +00:00
{% endblock %}
2019-09-24 11:15:39 +00:00
{% block operations%}{% endblock %}