alpm-srcinfo 0.6.3

Library and command line tool for the specification and parsing of ALPM .SRCINFO files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash
# This file provides a simple and minimalistic PKGBUILD.
# Disable unused variable warnings:
# shellcheck disable=2034

pkgname=example
pkgver=0.1.0
pkgrel=1
arch=(x86_64)

pkgdesc="A minimalistic example."
url="https://archlinux.org/"
license=(MIT)

package() {
    echo "Nothing happening in here."
}