From f955a91399c3a7425227e58ca733148ee2b80024 Mon Sep 17 00:00:00 2001 From: Tobias Reisinger Date: Mon, 15 Jun 2020 18:18:52 +0200 Subject: [PATCH] init --- .gitignore | 3 +++ PKGBUILD | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 .gitignore create mode 100644 PKGBUILD diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..924dfb9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +pkg/ +src/ +*.tar.* diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..4f1afe5 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,34 @@ +# 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 +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" +}