diff options
author | J0WI <J0WI@users.noreply.github.com> | 2018-09-28 21:47:27 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-10-04 12:13:44 +0000 |
commit | f951928df6880b2b2c716416653eeaeea1954cf9 (patch) | |
tree | 24ea24838c11fa5e5fa931e3265e17a004038eaa /main/ccache | |
parent | 58d1cffe043329b4b471c7865d02778ef13abbce (diff) | |
download | aports-f951928df6880b2b2c716416653eeaeea1954cf9.tar.bz2 aports-f951928df6880b2b2c716416653eeaeea1954cf9.tar.xz |
main/ccache: upgrade to 3.4.3
Diffstat (limited to 'main/ccache')
-rw-r--r-- | main/ccache/APKBUILD | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/main/ccache/APKBUILD b/main/ccache/APKBUILD index 138faa24fb..e00641a713 100644 --- a/main/ccache/APKBUILD +++ b/main/ccache/APKBUILD @@ -1,16 +1,16 @@ # Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net> # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=ccache -pkgver=3.4.1 +pkgver=3.4.3 pkgrel=0 pkgdesc="A fast C/C++ compiler cache" -url="http://ccache.samba.org/" +url="https://ccache.samba.org/" arch="all" license="GPL-3.0-or-later" makedepends="zlib-dev" checkdepends="bash perl" subpackages="$pkgname-doc" -source="http://samba.org/ftp/$pkgname/$pkgname-$pkgver.tar.xz" +source="https://samba.org/ftp/$pkgname/$pkgname-$pkgver.tar.xz" builddir="$srcdir/$pkgname-$pkgver" prepare() { @@ -40,7 +40,7 @@ check() { package() { cd "$builddir" install -Dm 755 ccache "$pkgdir"/usr/bin/ccache - install -Dm 644 ccache.1 "$pkgdir"/usr/share/man/man1/ccache.1 + install -Dm 644 doc/ccache.1 "$pkgdir"/usr/share/man/man1/ccache.1 local link= mkdir -p "$pkgdir"/usr/lib/ccache/bin @@ -51,4 +51,4 @@ package() { done } -sha512sums="ebfa65888c2d8ef87c2e86889723afcc88103af0e73e386ba39f474a7f542712b705a553611a5f51a057c5f056925f10492bb1f3d9b837c9d578d7a913a845de ccache-3.4.1.tar.xz" +sha512sums="8a92ef3f3b3688bb4c0b39106bea387ec3065a074327c1fa793e511192acd5cf9aeb5c0065ee8868a944ec63463c2b59fb84edd952102468cd12fcbb1ee16c49 ccache-3.4.3.tar.xz" |