inital commit

This commit is contained in:
davedatum 2019-11-05 16:43:00 +00:00
commit 675f835d2a
3 changed files with 40 additions and 0 deletions

14
.SRCINFO Normal file
View File

@ -0,0 +1,14 @@
pkgbase = tromjaro-calamares-theme
pkgdesc = Theme for calamares
pkgver = 1
pkgrel = 1
url = https://gitlab.com/tromsite/tromjaro/calamares-settings
arch = any
license = GPL3
makedepends = git
depends = calamares
source = tromjaro-calamares-theme::git+https://gitlab.com/tromsite/tromjaro/calamares-settings.git#commit=863a6de5fef5ad3f0146adb6ae620e35b053fd9e
sha256sums = SKIP
pkgname = tromjaro-calamares-theme

6
.gitignore vendored Normal file
View File

@ -0,0 +1,6 @@
*
!.git
!.gitignore
!.SRCINFO
!PKGBUILD

20
PKGBUILD Normal file
View File

@ -0,0 +1,20 @@
# Maintainer: davedatum <trom@davedatum.com>
pkgname=tromjaro-calamares-theme
pkgver=1
pkgrel=1
pkgdesc="Theme for calamares"
arch=("any")
url="https://gitlab.com/tromsite/tromjaro/calamares-settings"
license=("GPL3")
depends=("calamares")
makedepends=("git")
source=("${pkgname}::git+${url}.git#commit=863a6de5fef5ad3f0146adb6ae620e35b053fd9e")
sha256sums=('SKIP')
package() {
install -d "${pkgdir}/etc"
cp -r "${srcdir}/${pkgname}/calamares" "${pkgdir}/etc/"
}