forked from pool/build
802b2c11d2
- Support getting the container tags from the Dockerfile - Put the disturl in the .buildenv file - Support rpm-buildroot-override buildflag - Support kvm builds on Debian - Support with/without/unless rich deps - Added obs-docker-support script for docker images - Initial SLE 15 config Rev openSUSE:Tools/328 Md5 209b92678909fb59d255acef5bee0ad4 2017-10-03 03:03:36 coolo 527666
18 lines
383 B
Bash
18 lines
383 B
Bash
pkgname=build
|
|
pkgver=20170918
|
|
pkgrel=0
|
|
pkgdesc="Build packages in sandbox"
|
|
arch=('i686' 'x86_64')
|
|
url="https://www.github.com/openSUSE/obs-build"
|
|
license=('GPL-2.0+' 'GPL-2.0')
|
|
groups=('base-devel')
|
|
depends=('perl')
|
|
source=(obs-build-${pkgver}.tar.gz)
|
|
md5sums=('SKIP')
|
|
|
|
package() {
|
|
msg "Installing build ..."
|
|
cd "${srcdir}"/obs-build-${pkgver}
|
|
make DESTDIR=${pkgdir} install
|
|
}
|