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/PKGBUILD
2020-06-15 18:18:52 +02:00

34 lines
765 B
Bash

# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.
# Maintainer: Tobias Reisinger <tobias@msrg.cc>
pkgname=emgauwa-core
pkgver=0.0.1
pkgrel=1
epoch=
pkgdesc=''
arch=('any')
url='https://git.serguzim.me/emgauwa/core'
license=('unknown')
groups=()
depends=('glibc' 'sqlite')
makedepends=('make' 'cmake' 'gcc')
backup=('etc/emgauwa/core.ini')
source=("https://ci.serguzim.me/archive/emgauwa-core/latest/testing.tar.gz")
sha256sums=('SKIP')
prepare() {
mkdir -p "build"
}
build() {
cd "build" || exit 1
cmake ..
make
}
package() {
echo "package"
}