diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2018-10-15 10:37:23 +0200 |
---|---|---|
committer | Sören Tempel <soeren+git@soeren-tempel.net> | 2018-10-15 10:37:23 +0200 |
commit | 738f8d0758f2c1ebedd598cbb0a89ecff4f01124 (patch) | |
tree | 81d3dba7a9d8e3f4062f0ac2ef7a296c9eef9ee7 /community | |
parent | 1d947f4d5b2c6010f3bfb2971c734cfeb73adcfe (diff) | |
download | aports-738f8d0758f2c1ebedd598cbb0a89ecff4f01124.tar.bz2 aports-738f8d0758f2c1ebedd598cbb0a89ecff4f01124.tar.xz |
community/monkeysphere: seperate build() and package()
Without this change the sources files are compiled in the package()
function as a perquisite of the install target.
Diffstat (limited to 'community')
-rw-r--r-- | community/monkeysphere/APKBUILD | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/community/monkeysphere/APKBUILD b/community/monkeysphere/APKBUILD index 214baaba24..aa26b53640 100644 --- a/community/monkeysphere/APKBUILD +++ b/community/monkeysphere/APKBUILD @@ -13,6 +13,11 @@ subpackages="$pkgname-doc" source="http://archive.monkeysphere.info/debian/pool/$pkgname/m/$pkgname/${pkgname}_$pkgver.orig.tar.gz" builddir="$srcdir/$pkgname-$pkgver" +build() { + cd "$builddir" + make +} + package() { cd "$builddir" make DESTDIR="$pkgdir" install |