Howdy, I have a PKGBUILD that requires git-lfs. It fails every time, even though, as far as I know the syntax is correct. I was told that possibly git pulling in the prepare() function would fix the issues, but I can't seem to get it working. I have attached the PKGBUILD. Can someone please help get this working? Thanks for the help Storm
On Thu, May 26, 2016 at 8:47 PM, Storm Dragon stormdragon2976@gmail.com wrote:
I have a PKGBUILD that requires git-lfs. It fails every time, even though,
What command do you use to build? How does it fail?
On 27-05-16 09:30, Christoph Gysin wrote:
On Thu, May 26, 2016 at 8:47 PM, Storm Dragon stormdragon2976@gmail.com wrote:
I have a PKGBUILD that requires git-lfs. It fails every time, even though,
What command do you use to build? How does it fail?
Christoph, check https://bbs.archlinux.org/viewtopic.php?id=211424 .
upstream repo uses an extension for git called lfs ,makepkg handles git-lfs files wrong.
Storm Dragon, which commands would you use to build horseshoes-git manually ?
LW
Howdy, It says the directory already exists and is not empty. Here's the PKGBUILD I was working on with the git clone stuff done in the prepare() function: Oh, and the command I'm using is just makepkg -s Thanks Storm On Fri, May 27, 2016 at 12:08:06PM +0200, LoneVVolf wrote:
On 27-05-16 09:30, Christoph Gysin wrote:
On Thu, May 26, 2016 at 8:47 PM, Storm Dragon stormdragon2976@gmail.com wrote:
I have a PKGBUILD that requires git-lfs. It fails every time, even though,
What command do you use to build? How does it fail?
Christoph, check https://bbs.archlinux.org/viewtopic.php?id=211424 .
upstream repo uses an extension for git called lfs ,makepkg handles git-lfs files wrong.
Storm Dragon, which commands would you use to build horseshoes-git manually ?
LW
On 27-05-16 23:35, Storm Dragon wrote:
Howdy, It says the directory already exists and is not empty. Here's the PKGBUILD I was working on with the git clone stuff done in the prepare() function: Oh, and the command I'm using is just makepkg -s Thanks Storm
In the prepare()function ,use something like this :
if [[ -d "$_gitname" ]]; then cd "$_gitname" && git pull origin else git clone "$_gitroot" "$_gitname" fi
(copied from a git pkgbuild from before makepkg understood how to deal with vcs sources)
LW
aur-general@lists.archlinux.org