Commit b4fad477 authored by Rafael Monnerat's avatar Rafael Monnerat

PKGBUILD: Use braces on variables

parent b28b9c35
...@@ -9,15 +9,15 @@ license=('GPL') ...@@ -9,15 +9,15 @@ license=('GPL')
depends=('gcc' 'make' 'patch' 'wget' 'python2' 'python2-distribute' 'bridge-utils') depends=('gcc' 'make' 'patch' 'wget' 'python2' 'python2-distribute' 'bridge-utils')
makedepends=('gcc' 'make' 'patch' 'wget' 'python2' 'python2-distribute' 'chrpath' 'inetutils') makedepends=('gcc' 'make' 'patch' 'wget' 'python2' 'python2-distribute' 'chrpath' 'inetutils')
install='slapos-node.install' install='slapos-node.install'
source=($pkgname_$pkgver.tar.gz) source=(${pkgname}_${pkgver}.tar.gz)
md5sums=(%SOURCEMD5) md5sums=(%SOURCEMD5)
build() { build() {
cd "$srcdir/$pkgname_$pkgver" cd "${srcdir}/${pkgname}_${pkgver}"
make PYTHON=python2 make PYTHON=python2
} }
package() { package() {
cd "$srcdir/$pkgname_$pkgver" cd "${srcdir}/${pkgname}_${pkgver}"
make DESTDIR="$pkgdir/" install make DESTDIR="$pkgdir/" install
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment