This repository has been archived on 2024-05-06. You can view files and clone it, but cannot push or open issues or pull requests.
package/core-testing/PKGBUILD

52 lines
1.7 KiB
Text
Raw Normal View History

2020-06-15 16:18:52 +00:00
# Maintainer: Tobias Reisinger <tobias@msrg.cc>
2020-06-15 20:47:45 +00:00
pkgname=emgauwa-core-testing
pkgver=0.2.0
2020-06-15 16:18:52 +00:00
pkgrel=1
epoch=
2020-06-15 20:47:45 +00:00
pkgdesc=""
2020-06-15 16:18:52 +00:00
arch=('any')
2020-06-15 20:47:45 +00:00
url="https://git.serguzim.me/emgauwa/core"
2020-06-15 16:18:52 +00:00
license=('unknown')
groups=()
depends=('glibc' 'sqlite')
makedepends=('make' 'cmake' 'gcc')
2020-06-15 20:47:45 +00:00
conflicts=('emgauwa-core')
2020-06-15 16:18:52 +00:00
backup=('etc/emgauwa/core.ini')
source=("$pkgname-$pkgver.tar.gz::https://ci.serguzim.me/archive/emgauwa-core-testing/working/$pkgname.tar.gz"
2020-06-15 20:47:45 +00:00
"core.ini"
"emgauwa-core-testing.service"
"emgauwa-core-testing.sysusers"
"emgauwa-core-testing.tmpfiles")
sha256sums=("SKIP"
2020-06-25 23:50:44 +00:00
"6f113aa1c6ddbf982674ee192db2462758f83dfff12ab85ed4e221c0fdcf7de8"
2020-06-15 20:47:45 +00:00
"c781f4d50da8e158551a47a8549981dad05faaf2d632c4fde8b36b48474ab0ec"
"b9cde58b9e9b0605ca4a1eddd78067c55aa3c8d40f80cde0a25c4da9f6f95798"
"0531f10303410afd7e53099e66b124ef2fd14afec9d33c4a0146793375acb6c2")
2020-06-15 16:18:52 +00:00
2020-06-16 23:12:47 +00:00
pkgver() {
grep -Po "^ *VERSION \K[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+$" "${pkgname}/CMakeLists.txt"
}
2020-06-15 16:18:52 +00:00
prepare() {
2020-06-15 20:47:45 +00:00
cd "$pkgname"
mkdir -p "build"
2020-06-15 16:18:52 +00:00
}
build() {
2020-06-15 20:47:45 +00:00
cd "$pkgname/build" || exit 1
cmake ..
make
2020-06-15 16:18:52 +00:00
}
package() {
2020-06-15 20:47:45 +00:00
install -Dm755 "${pkgname}/build/core" "${pkgdir}/usr/bin/emgauwa-core"
install -Dm600 "core.ini" "${pkgdir}/etc/emgauwa/core.ini"
2020-06-15 20:47:45 +00:00
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"
2020-06-15 16:18:52 +00:00
}