2012-11-25 18:43:53 +00:00
|
|
|
|
|
|
|
buildarch=6
|
|
|
|
|
|
|
|
pkgname="git-annex"
|
2013-05-01 16:45:39 +00:00
|
|
|
pkgver=4.20130417
|
2012-11-25 18:43:53 +00:00
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="manage files with git, without checking their contents into git"
|
|
|
|
url="http://git-annex.branchable.com/"
|
|
|
|
license=("GPL3")
|
|
|
|
arch=("arm" "armv7h")
|
2013-05-01 16:45:39 +00:00
|
|
|
depends=("libffi" "gmp" "git" "rsync" "curl" "openssh" "libidn" "gsasl" "libxml2" "lsof")
|
2012-11-25 18:43:53 +00:00
|
|
|
makedepends=("binutils")
|
|
|
|
options=("!docs")
|
|
|
|
if [ "${CARCH}" = "armv7h" ]; then
|
|
|
|
source=("http://ftp.uk.debian.org/debian/pool/main/g/git-annex/git-annex_${pkgver}_armhf.deb")
|
2013-05-01 16:45:39 +00:00
|
|
|
md5sums=("172006cfe420ed9e7f7377c36ed94841")
|
2012-11-25 18:43:53 +00:00
|
|
|
else
|
|
|
|
source=("http://ftp.uk.debian.org/debian/pool/main/g/git-annex/git-annex_${pkgver}_armel.deb")
|
2013-05-01 16:45:39 +00:00
|
|
|
md5sums=("ab66d9a9044a6e8ab7b2f0be7831b31b")
|
2012-11-25 18:43:53 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
build() {
|
|
|
|
if [ "${CARCH}" = "armv7h" ]; then
|
|
|
|
ar x "git-annex_${pkgver}_armhf.deb"
|
|
|
|
else
|
|
|
|
ar x "git-annex_${pkgver}_armel.deb"
|
|
|
|
fi
|
|
|
|
tar -zxf data.tar.gz -C "${pkgdir}"
|
|
|
|
|
2013-05-01 16:45:39 +00:00
|
|
|
sed -re "s/(libffi\.so\.)5/\16/g" \
|
2013-03-15 17:02:19 +00:00
|
|
|
-e "s/(libgnutls\.so\.2)6/\18/g" -i "${pkgdir}/usr/bin/git-annex"
|
2012-11-25 18:43:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# vim: set noet ff=unix:
|