diff options
author | Fabian Affolter <fabian@affolter-engineering.ch> | 2012-05-19 21:08:45 +0000 |
---|---|---|
committer | Fabian Affolter <fabian@affolter-engineering.ch> | 2012-05-20 16:57:45 +0000 |
commit | 124128573c9f79345b6e64a38791fdea9e869a74 (patch) | |
tree | c9b65bdacc8ef378e130d5840551b5bef0c2db2c /testing/fossil | |
parent | 56fb86678bc041c600a44871201272941b42154f (diff) | |
download | aports-124128573c9f79345b6e64a38791fdea9e869a74.tar.bz2 aports-124128573c9f79345b6e64a38791fdea9e869a74.tar.xz |
testing/fossil: upgrade to 1.22
Diffstat (limited to 'testing/fossil')
-rw-r--r-- | testing/fossil/APKBUILD | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/testing/fossil/APKBUILD b/testing/fossil/APKBUILD index c36ac607e6..d539b65400 100644 --- a/testing/fossil/APKBUILD +++ b/testing/fossil/APKBUILD @@ -1,21 +1,23 @@ # Contributor: Paul Onyschuk <blink@bojary.koba.pl> # Maintainer: pkgname=fossil -pkgver=1.18 -_pkgver=20110713230341 +pkgver=1.22 +_pkgver=20120317175325 pkgrel=0 pkgdesc="Simple, high-reliability, distributed software configuration management" url="http://www.fossil-scm.org" arch="all" license="BSD" -depends= +depends="" makedepends="openssl-dev zlib-dev" -source="$url/download/$pkgname-src-$_pkgver.tar.gz" - +source="http://www.fossil-scm.org/download/$pkgname-src-$_pkgver.tar.gz" _builddir="$srcdir"/$pkgname-src-$_pkgver build() { cd "$_builddir" + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man || return 1 make TCC="${CC:-gcc} $CFLAGS" || return 1 } @@ -24,4 +26,4 @@ package() { install -Dm 755 $pkgname "$pkgdir"/usr/bin/$pkgname || return 1 } -md5sums="ed916bc0db85f30eadd0de45f6bc95ad fossil-src-20110713230341.tar.gz" +md5sums="a7106450722e8477972d230fa535702f fossil-src-20120317175325.tar.gz" |