Compare commits

..

No commits in common. "4b029027f2ba99c113aac85613ffb21e6e1afe31" and "3668f130f3bd879b0370378cf3d957b535dd2575" have entirely different histories.

3 changed files with 18 additions and 13 deletions

12
.SRCINFO Normal file
View File

@ -0,0 +1,12 @@
pkgbase = gitea-github-theme
pkgdesc = DEV - GitHub-based light and dark themes for Gitea including an automatic theme switch option
pkgver = 3.1.0
pkgrel = 1
url = https://git.spaeth.biz/Lila-Kuh/gitea-github-theme
arch = any
license = MIT
depends = gitea
source = https://git.spaeth.biz/Lila-Kuh/gitea-github-theme/archive/1.19.0+dev.tar.gz
sha256sums = SKIP
pkgname = gitea-github-theme

View File

@ -1,5 +0,0 @@
pipeline:
first-job:
image: busybox
commands:
- echo "first run"

View File

@ -7,16 +7,14 @@ pkgdesc='DEV - GitHub-based light and dark themes for Gitea including an automat
arch=('any')
url='https://git.spaeth.biz/Lila-Kuh/gitea-github-theme'
license=('MIT')
depends=('git')
depends=('gitea')
source=("https://git.spaeth.biz/Lila-Kuh/gitea-github-theme/archive/1.19.0+dev.tar.gz")
sha256sums=('SKIP')
package() {
cd "$_pkgname"
mkdir -p "${pkgdir}/var/lib/gitea"
mkdir -p "${pkgdir}/var/lib/gitea/custom"
mkdir -p "${pkgdir}/var/lib/gitea/custom/public"
mkdir -p "${pkgdir}/var/lib/gitea/custom/public/css"
install -D -m 644 ${srcdir}/${pkgname}/*css "${pkgdir}/var/lib/gitea/custom/public/css/"
install -d -o gitea -g gitea "${pkgdir}/var/lib/gitea"
install -d -o gitea -g gitea "${pkgdir}/var/lib/gitea/custom"
install -d -o gitea -g gitea "${pkgdir}/var/lib/gitea/custom/public"
install -d -o gitea -g gitea "${pkgdir}/var/lib/gitea/custom/public/css"
install -D -m644 -o gitea -g gitea ${srcdir}/${pkgname}/*css "${pkgdir}/var/lib/gitea/custom/public/css/"
}