Upgrade core-testing to v0.4.0
Add the new config files and add a drop-in config for the webapp.
This commit is contained in:
parent
b39bd4a189
commit
58d94cc3a3
8 changed files with 55 additions and 42 deletions
|
@ -1,6 +1,6 @@
|
|||
# Maintainer: Tobias Reisinger <tobias@msrg.cc>
|
||||
pkgname=emgauwa-core-testing
|
||||
pkgver=0.3.5
|
||||
pkgver=0.4.0
|
||||
pkgrel=1
|
||||
epoch=
|
||||
pkgdesc=""
|
||||
|
@ -8,20 +8,20 @@ arch=('x86_64' 'armv6h' 'armv7h' 'aarch64')
|
|||
url="https://git.serguzim.me/emgauwa/core"
|
||||
license=('unknown')
|
||||
groups=()
|
||||
depends=('glibc' 'sqlite')
|
||||
depends=('sqlite' 'libbsd')
|
||||
makedepends=('make' 'cmake' 'gcc' 'vim')
|
||||
conflicts=('emgauwa-core')
|
||||
backup=('etc/emgauwa/core.ini')
|
||||
backup=('etc/emgauwa/core.conf')
|
||||
source=("https://git.serguzim.me/emgauwa/core/archive/testing-v$pkgver.tar.gz"
|
||||
"core.ini"
|
||||
"core.conf"
|
||||
"emgauwa-core-testing.service"
|
||||
"emgauwa-core-testing.sysusers"
|
||||
"emgauwa-core-testing.tmpfiles")
|
||||
sha256sums=('98c19898f675d4c86d8069bf9d17de7069822e16bd85815e8bd7d6c5630dd8b9'
|
||||
'210c8a05bae65e5f19c0c168b0f8c63d064706a9e7885a22a57ca7b04ea4e00f'
|
||||
'c781f4d50da8e158551a47a8549981dad05faaf2d632c4fde8b36b48474ab0ec'
|
||||
sha256sums=('d4d5c6be1fcfa27ac9b6033c23e3730814f423a14103503df4fd5af2628612a4'
|
||||
'ac9cb03e0aee8cc7253f25f6c950936fb8195e450d38c2b369325038d3294d93'
|
||||
'541f0c83d883416eec015b5d47061c221ba2aa1ea5683b78a0aaa32145b955e3'
|
||||
'b9cde58b9e9b0605ca4a1eddd78067c55aa3c8d40f80cde0a25c4da9f6f95798'
|
||||
'76f7d12b56efbdb06eb14ac758da2daa4ca9f2c6449a0103db6aeab22ed93cd8')
|
||||
'a7ba77dd757960bf466dbca1510d3b7441fba7474fa40e395111c4551447d75f')
|
||||
|
||||
prepare() {
|
||||
cd "core"
|
||||
|
@ -37,11 +37,15 @@ build() {
|
|||
package() {
|
||||
install -Dm755 "core/build/core" "${pkgdir}/usr/bin/emgauwa-core"
|
||||
|
||||
install -Dm600 "core.ini" "${pkgdir}/etc/emgauwa/core.ini"
|
||||
install -Ddm750 "${pkgdir}/etc/emgauwa/"
|
||||
install -Ddm750 "${pkgdir}/etc/emgauwa/core.conf.d/"
|
||||
|
||||
install -Dm660 "core.conf" "${pkgdir}/etc/emgauwa/core.conf"
|
||||
|
||||
install -Ddm750 "${pkgdir}/var/lib/emgauwa"
|
||||
install -Ddm750 "${pkgdir}/var/lib/emgauwa/core/"
|
||||
|
||||
install -Dm644 "${pkgname}.service" "${pkgdir}/usr/lib/systemd/system/${pkgname}.service"
|
||||
install -Dm644 "${pkgname}.tmpfiles" "${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf"
|
||||
install -Dm644 "${pkgname}.sysusers" "${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
|
||||
|
||||
install -Ddm750 "${pkgdir}/var/lib/emgauwa"
|
||||
install -Ddm750 "${pkgdir}/var/lib/emgauwa/core"
|
||||
}
|
||||
|
|
Reference in a new issue