Introduce a PKGBUILD

This commit is contained in:
Bogomil Vasilev
2017-08-22 16:25:30 +03:00
parent 31c2c8ea7c
commit 7ebfa213ac

View File

@@ -0,0 +1,23 @@
# Maintainer: Bogomil Vasilev <smirky@smirky.net>
# Just build via makepkg
pkgname=rmps
pkgver=20170822.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
}