[aur-general] PKGBUILD and git-lfs
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 -- Powered by Arch Linux! I am registered Linux user number 508465: https://linuxcounter.net/user/508465.html My blog, Thoughts of a Dragon: http://www.stormdragon.tk/ get my public PGP key: gpg --keyserver wwwkeys.pgp.net --recv-key 43DDC193 Twitter and Facebook are so ... yesteryear. Get your 2MB Social account TODAY! http://2mb.social/main/register How many Internet mail list subscribers does it take to change a lightbulb? http://goo.gl/eO4PJ "I've seen the tempest in darkest nights I've faced the eyes of Thor" Stormwarrior - Heading Northe
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? -- echo mailto: NOSPAM !#$.'<*>'|sed 's. ..'|tr "<*> !#:2" org@fr33z3
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
-- Powered by Arch Linux! I am registered Linux user number 508465: https://linuxcounter.net/user/508465.html My blog, Thoughts of a Dragon: http://www.stormdragon.tk/ get my public PGP key: gpg --keyserver wwwkeys.pgp.net --recv-key 43DDC193 Twitter and Facebook are so ... yesteryear. Get your 2MB Social account TODAY! http://2mb.social/main/register How to load Windows on your machine in 2 minutes or less: http://www.youtube.com/watch?v=FVbf9tOGwno "Listen up to ancient tales of monsters, zombies, ghosts 'bout creatures rising from the graves to haunt the living world" The Other - Beware of Ghouls
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
participants (3)
-
Christoph Gysin
-
LoneVVolf
-
Storm Dragon