2017-04-19 09:11:22 +02:00
|
|
|
# Template file for 'git-lfs'
|
|
|
|
pkgname=git-lfs
|
2017-05-23 11:05:25 +02:00
|
|
|
version=2.1.1
|
2017-05-25 11:49:28 +02:00
|
|
|
revision=2
|
2017-04-19 09:11:22 +02:00
|
|
|
nocross=1
|
|
|
|
build_style=go
|
|
|
|
go_import_path="github.com/git-lfs/git-lfs"
|
|
|
|
hostmakedepends="go"
|
|
|
|
depends="git"
|
|
|
|
short_desc="Git extension for versioning large files"
|
|
|
|
maintainer="Nicklaus McClendon <nicklaus@kulinacs.com>"
|
|
|
|
license="MIT"
|
|
|
|
homepage="https://git-lfs.github.com/"
|
2017-05-23 11:05:25 +02:00
|
|
|
distfiles="https://github.com/git-lfs/${pkgname}/archive/v${version}.tar.gz"
|
|
|
|
checksum=655c1e9bf931afb958c2b81de5c1c38b3ebd6831a04ca5fdcf58cba05e2948d8
|
2017-04-19 09:11:22 +02:00
|
|
|
|
|
|
|
pre_build() {
|
|
|
|
chmod +x script/bootstrap
|
|
|
|
mkdir -p src/github.com/git-lfs
|
|
|
|
ln -s $(pwd) src/github.com/git-lfs/${pkgname}
|
|
|
|
}
|
|
|
|
|
|
|
|
do_build() {
|
|
|
|
GOPATH=$(pwd) ./script/bootstrap
|
|
|
|
}
|
|
|
|
|
|
|
|
do_install() {
|
|
|
|
vbin bin/git-lfs
|
|
|
|
vlicense LICENSE.md
|
|
|
|
}
|