diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2017-03-24 17:20:53 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-03-24 17:20:53 +0000 |
commit | ab7a2238b7505a4906dfdb2bb36d549ba0108c3e (patch) | |
tree | a171b4949f206a8ea5ddc7738ae1f9ca2d02b788 /main | |
parent | 9f9e9e46207f1f1963bdd968431bbc690bad6cc9 (diff) | |
download | aports-ab7a2238b7505a4906dfdb2bb36d549ba0108c3e.tar.bz2 aports-ab7a2238b7505a4906dfdb2bb36d549ba0108c3e.tar.xz |
main/jasper: change build dir to "obj"
the source package provides a dir named "build". We dont want use that
for our build.
Diffstat (limited to 'main')
-rw-r--r-- | main/jasper/APKBUILD | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/main/jasper/APKBUILD b/main/jasper/APKBUILD index c68009bfbd..d526dfcebc 100644 --- a/main/jasper/APKBUILD +++ b/main/jasper/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=jasper pkgver=2.0.10 -pkgrel=0 +pkgrel=1 pkgdesc="A software-based implementation of the codec specified in the emerging JPEG-2000 Part-1 standard" url="http://www.ece.uvic.ca/~mdadams/jasper/" arch="all" @@ -23,8 +23,8 @@ prepare() { } build () { - mkdir "$builddir"/build - cd "$builddir"/build + mkdir "$builddir"/obj + cd "$builddir"/obj cmake .. \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ @@ -35,7 +35,7 @@ build () { } package() { - cd "$builddir"/build + cd "$builddir"/obj make DESTDIR="$pkgdir" install || return 1 } |