diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-06-29 14:29:25 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-06-29 14:29:25 +0000 |
commit | 61f74a9920a90a080a5d4db427190af6dae59a98 (patch) | |
tree | e6b793ad4f1483e022289c8f4e55dba2a98927a3 /main | |
parent | 22acc7b6bf82cc7114db83e47326010a2722d3a2 (diff) | |
download | aports-61f74a9920a90a080a5d4db427190af6dae59a98.tar.bz2 aports-61f74a9920a90a080a5d4db427190af6dae59a98.tar.xz |
main/librsync: remove *.la
Diffstat (limited to 'main')
-rw-r--r-- | main/librsync/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/librsync/APKBUILD b/main/librsync/APKBUILD index 248cda5c9..25c1b0ee8 100644 --- a/main/librsync/APKBUILD +++ b/main/librsync/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Jeremy Thomerson <jeremy@thomersonfamily.com> pkgname=librsync pkgver=0.9.7 -pkgrel=0 +pkgrel=1 pkgdesc="librsync implements the rolling-checksum algorithm of rsync" url="http://sourceforge.net/projects/librsync/" arch="all" @@ -25,6 +25,7 @@ build() { package() { cd "$_builddir" make DESTDIR="$pkgdir" install || return 1 + rm "$pkgdir"/usr/lib/*.la || return 1 } md5sums="24cdb6b78f45e0e83766903fd4f6bc84 librsync-0.9.7.tar.gz" |