First commit
This commit is contained in:
2
models/aur/settings
Normal file
2
models/aur/settings
Normal file
@@ -0,0 +1,2 @@
|
||||
plugin=aur
|
||||
target=local-test
|
||||
19
models/custom/files/PKGBUILD
Normal file
19
models/custom/files/PKGBUILD
Normal file
@@ -0,0 +1,19 @@
|
||||
# Maintainer: me <me at the google email domain which is .com>
|
||||
|
||||
pkgname=pkgname
|
||||
pkgver=0.0.0
|
||||
pkgrel=0
|
||||
pkgdesc="Desc"
|
||||
arch=('any')
|
||||
url='url'
|
||||
license=('GPL3')
|
||||
#depends=()
|
||||
#makedepends=()
|
||||
#optdepends=()
|
||||
#source=("${pkgname}::git+https://url.git")
|
||||
#md5sums=('SKIP')
|
||||
#backup=()
|
||||
|
||||
package() {
|
||||
cd ${pkgname}
|
||||
}
|
||||
25
models/custom/plugin
Normal file
25
models/custom/plugin
Normal file
@@ -0,0 +1,25 @@
|
||||
#!/bin/bash
|
||||
|
||||
custom_plugin_isupdatable() {
|
||||
return 1
|
||||
}
|
||||
|
||||
custom_plugin_isbumpable() {
|
||||
return 1
|
||||
}
|
||||
|
||||
custom_plugin_getpkgfiles() {
|
||||
return 1
|
||||
}
|
||||
|
||||
custom_plugin_bump() {
|
||||
return 1
|
||||
}
|
||||
|
||||
custom_plugin_getlatestversion() {
|
||||
return 1
|
||||
}
|
||||
|
||||
custom_plugin_update() {
|
||||
return 1
|
||||
}
|
||||
2
models/custom/settings
Normal file
2
models/custom/settings
Normal file
@@ -0,0 +1,2 @@
|
||||
plugin=custom
|
||||
target=local-test
|
||||
29
models/github-branch/files/PKGBUILD
Normal file
29
models/github-branch/files/PKGBUILD
Normal file
@@ -0,0 +1,29 @@
|
||||
# Maintainer: user <user at the google email domain which is .com>
|
||||
|
||||
_githubuser=
|
||||
_githubrepo=
|
||||
_gitcommit=
|
||||
|
||||
pkgname=
|
||||
pkgver=0
|
||||
pkgrel=0
|
||||
pkgdesc='Desc'
|
||||
arch=('any')
|
||||
url="https://github.com/${_githubuser}/${_githubrepo}"
|
||||
#license=('GPL3')
|
||||
#depends=()
|
||||
makedepends=('git')
|
||||
#optdepends=()
|
||||
#install="${pkgname}.install"
|
||||
#provides=()
|
||||
#backup=()
|
||||
source=("git+https://github.com/${_githubuser}/${_githubrepo}.git#commit=${_gitcommit}")
|
||||
sha256sums=('SKIP')
|
||||
|
||||
build() {
|
||||
cd "${_githubrepo}"
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${_githubrepo}"
|
||||
}
|
||||
10
models/github-branch/settings
Normal file
10
models/github-branch/settings
Normal file
@@ -0,0 +1,10 @@
|
||||
plugin=github-branch
|
||||
target=local-test
|
||||
githubuser=
|
||||
githubrepo=
|
||||
gitbranch=
|
||||
gitcommit=
|
||||
pkgrev=0
|
||||
pkgver=0
|
||||
version=0
|
||||
pkgrel=1
|
||||
29
models/github-release/files/PKGBUILD
Normal file
29
models/github-release/files/PKGBUILD
Normal file
@@ -0,0 +1,29 @@
|
||||
# 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}::https://github.com/${_githubuser}/${_githubrepo}/archive/refs/tags/${_pkgtagname}.tar.gz")
|
||||
sha256sums=('SKIP')
|
||||
|
||||
build() {
|
||||
cd "${_githubrepo}-${pkgver}"
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${_githubrepo}-${pkgver}"
|
||||
}
|
||||
4
models/github-release/settings
Normal file
4
models/github-release/settings
Normal file
@@ -0,0 +1,4 @@
|
||||
plugin=github-release
|
||||
target=local-test
|
||||
githubuser=
|
||||
githubrepo=
|
||||
29
models/github-tag/files/PKGBUILD
Normal file
29
models/github-tag/files/PKGBUILD
Normal file
@@ -0,0 +1,29 @@
|
||||
# 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}::https://github.com/${_githubuser}/${_githubrepo}/archive/refs/tags/${_pkgtagname}.tar.gz")
|
||||
sha256sums=('SKIP')
|
||||
|
||||
build() {
|
||||
cd "${_githubrepo}-${pkgver}"
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${_githubrepo}-${pkgver}"
|
||||
}
|
||||
4
models/github-tag/settings
Normal file
4
models/github-tag/settings
Normal file
@@ -0,0 +1,4 @@
|
||||
plugin=github-tag
|
||||
target=local-test
|
||||
githubuser=
|
||||
githubrepo=
|
||||
19
models/manual/files/PKGBUILD
Normal file
19
models/manual/files/PKGBUILD
Normal file
@@ -0,0 +1,19 @@
|
||||
# Maintainer: me <me at the google email domain which is .com>
|
||||
|
||||
pkgname=pkgname
|
||||
pkgver=0.0.0
|
||||
pkgrel=0
|
||||
pkgdesc="Desc"
|
||||
arch=('any')
|
||||
url='url'
|
||||
license=('GPL3')
|
||||
#depends=()
|
||||
#makedepends=()
|
||||
#optdepends=()
|
||||
#source=("${pkgname}::git+https://url.git")
|
||||
#md5sums=('SKIP')
|
||||
#backup=()
|
||||
|
||||
package() {
|
||||
cd ${pkgname}
|
||||
}
|
||||
2
models/manual/settings
Normal file
2
models/manual/settings
Normal file
@@ -0,0 +1,2 @@
|
||||
plugin=manual
|
||||
target=local-test
|
||||
Reference in New Issue
Block a user