diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2016-06-15 09:54:50 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2016-06-15 09:54:50 +0000 |
commit | 5a72214e4926eadf68b15b44e26d4f69fcb431ce (patch) | |
tree | 3c2ff8fb820ae202eb332f8e2a26eadac3c063e4 /testing/shine | |
parent | bd10137c8cf59a83cfea91a017c2d33b1b3a96d7 (diff) | |
download | aports-5a72214e4926eadf68b15b44e26d4f69fcb431ce.tar.bz2 aports-5a72214e4926eadf68b15b44e26d4f69fcb431ce.tar.xz |
testing/shine: fix it so it actually builds
Diffstat (limited to 'testing/shine')
-rw-r--r-- | testing/shine/APKBUILD | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/testing/shine/APKBUILD b/testing/shine/APKBUILD index 3c86b17a99..9436568059 100644 --- a/testing/shine/APKBUILD +++ b/testing/shine/APKBUILD @@ -14,7 +14,7 @@ install="" subpackages="" source="https://github.com/toots/shine/releases/download/$pkgver/shine-$pkgver.tar.gz" -builddir= +builddir="$srcdir"/shine-$pkgver build() { cd "$builddir" autoreconf -f -i @@ -23,8 +23,7 @@ build() { } package() { - cd $srcdir"/shine-"$pkgver"/" - set + cd "$builddir" make DESTDIR="$pkgdir" install } |