diff options
Diffstat (limited to 'testing/inotify-tools/APKBUILD')
-rw-r--r-- | testing/inotify-tools/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/testing/inotify-tools/APKBUILD b/testing/inotify-tools/APKBUILD index a664b55d02..82bb0baabb 100644 --- a/testing/inotify-tools/APKBUILD +++ b/testing/inotify-tools/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Leonardo Arena <rnalrd@gmail.com> pkgname="inotify-tools" pkgver=3.14 -pkgrel=0 +pkgrel=1 pkgdesc="C library and CLI tools providing a simple interface to inotify" url="http://github.com/rvoicilas/inotify-tools" arch="all" @@ -32,7 +32,8 @@ build() { package() { cd "$_builddir" - make DESTDIR="$pkgdir" install + make DESTDIR="$pkgdir" install || return 1 + rm "$pkgdir"/usr/lib/*.la || return 1 } md5sums="b43d95a0fa8c45f8bab3aec9672cf30c inotify-tools-3.14.tar.gz" |