35 lines
765 B
Text
35 lines
765 B
Text
|
# 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"
|
||
|
}
|