diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-06-22 12:05:17 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-06-22 13:05:28 +0000 |
commit | e6d98ff56dc1359531ca6b59ad93862ba1ae7124 (patch) | |
tree | 1aeb19902e5b4521dfc896c34168fbf20a043f2b | |
parent | 3484a0f87b22469069a971d68baf853e3298b4aa (diff) | |
download | aports-e6d98ff56dc1359531ca6b59ad93862ba1ae7124.tar.bz2 aports-e6d98ff56dc1359531ca6b59ad93862ba1ae7124.tar.xz |
main/ccache: upgrade to 3.0
-rw-r--r-- | main/ccache/APKBUILD | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/main/ccache/APKBUILD b/main/ccache/APKBUILD index 2848bb64d5..b7eb252eb7 100644 --- a/main/ccache/APKBUILD +++ b/main/ccache/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=ccache -pkgver=2.4 -pkgrel=1 +pkgver=3.0 +pkgrel=0 pkgdesc="ccache is a compiler cache" url="http://ccache.samba.org/" license="GPL" @@ -15,6 +15,10 @@ build () cd "$srcdir"/$pkgname-$pkgver ./configure --prefix=/usr make || return 1 +} + +package() { + cd "$srcdir"/$pkgname-$pkgver install -Dm 755 ccache "$pkgdir"/usr/bin/ccache install -Dm 644 ccache.1 "$pkgdir"/usr/share/man/man1/ccache.1 mkdir -p "$pkgdir"/usr/lib/ccache/bin @@ -29,4 +33,4 @@ build () ln -sf /usr/bin/ccache "$pkgdir"/usr/lib/ccache/bin/${CHOST}-cpp ln -sf /usr/bin/ccache "$pkgdir"/usr/lib/ccache/bin/${CHOST}-c++ } -md5sums="73c1ed1e767c1752dd0f548ec1e66ce7 ccache-2.4.tar.gz" +md5sums="98145b8ad69a96bf1abf9a52d550e507 ccache-3.0.tar.gz" |