Introduce src, obj, build, docs & modify Makefile

This commit is contained in:
2018-02-16 15:30:36 +02:00
parent 3a0ccd3b31
commit bd9ebee627
29 changed files with 15 additions and 21 deletions

View File

@@ -0,0 +1,23 @@
# Maintainer: Bogomil Vasilev <smirky@smirky.net>
# Just build via makepkg
pkgname=rmps
pkgver=20180216.0
pkgrel=1
pkgdesc='Remote Management and Provisioning System'
url='https://git.smirky.net/smirky/rmps.git/'
arch=('i686' 'x86_64')
depends=('libmariadbclient')
validpgpkeys=('8C4D267F4977BFFEF23121E8646F3ABF6E457336')
source=("$pkgname::git+https://git.smirky.net/smirky/$pkgname.git")
sha256sums=('SKIP')
build() {
cd "${srcdir}/${pkgname}"
make
}
package() {
cd "${srcdir}/${pkgname}"
make DESTDIR="${pkgdir}" install
}