31 lines
732 B
Bash
31 lines
732 B
Bash
# Maintainer: user <user at the google email domain which is .com>
|
|
|
|
_githubuser=
|
|
_githubrepo=
|
|
_pkgtagname=
|
|
|
|
pkgname=
|
|
pkgver=0
|
|
pkgrel=0
|
|
pkgdesc='Desc'
|
|
arch=('any')
|
|
url="https://github.com/${_githubuser}/${_githubrepo}"
|
|
#license=('GPL3')
|
|
#depends=()
|
|
#makedepends=()
|
|
#optdepends=()
|
|
#install="${pkgname}.install"
|
|
#provides=()
|
|
#backup=()
|
|
#source=("${_githubrepo}-${pkgrel}.tar.gz::https://github.com/${_githubuser}/${_githubrepo}/archive/refs/tags/${_pkgtagname}.tar.gz")
|
|
#source=("${_githubrepo}-${pkgrel}.tar.gz::https://github.com/${_githubuser}/${_githubrepo}/releases/download/v${pkgver}/${_githubrepo}-${pkgver}.tar.gz")
|
|
sha256sums=('SKIP')
|
|
|
|
build() {
|
|
cd "${_githubrepo}-${pkgver}"
|
|
}
|
|
|
|
package() {
|
|
cd "${_githubrepo}-${pkgver}"
|
|
}
|