init
This commit is contained in:
commit
f955a91399
2 changed files with 37 additions and 0 deletions
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
pkg/
|
||||
src/
|
||||
*.tar.*
|
34
PKGBUILD
Normal file
34
PKGBUILD
Normal file
|
@ -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 <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"
|
||||
}
|
Reference in a new issue