[arch-general] Current PKGBUILD that pulls directly from git?
Guys, I've read https://wiki.archlinux.org/index.php/VCS_PKGBUILD_Guidelines regarding git and it will get me going, but does anyone know of a current PKGBUILD using git that would also be a good additional reference? -- David C. Rankin, J.D.,P.E.
Search aur for -git Sent from my phone. Sorry for any spelling mistakes
On Tue, Feb 21, 2012 at 16:42, David C. Rankin <drankinatty@suddenlinkmail.com> wrote:
Guys,
I've read https://wiki.archlinux.org/index.php/VCS_PKGBUILD_Guidelines regarding git and it will get me going, but does anyone know of a current PKGBUILD using git that would also be a good additional reference?
-- David C. Rankin, J.D.,P.E.
Install abs and look in /usr/share/pacman/ at the proto PKGBUILDs. You may also want to look at "newpkg", from pkgtools.
On 02/21/2012 03:44 PM, Daenyth wrote:
On Tue, Feb 21, 2012 at 16:42, David C. Rankin <drankinatty@suddenlinkmail.com> wrote:
Guys,
I've read https://wiki.archlinux.org/index.php/VCS_PKGBUILD_Guidelines regarding git and it will get me going, but does anyone know of a current PKGBUILD using git that would also be a good additional reference?
Thanks Daenyth!
Install abs and look in /usr/share/pacman/ at the proto PKGBUILDs. You may also want to look at "newpkg", from pkgtools.
Thanks Jesse!
Search aur for -git
That's what I needed! -- David C. Rankin, J.D.,P.E.
On 02/21/2012 03:44 PM, Daenyth wrote:
Install abs and look in /usr/share/pacman/ at the proto PKGBUILDs. You may also want to look at "newpkg", from pkgtools.
for i in $(find /var/abs -name PKGBUILD); do if grep "git clone" $i; then echo "found in $i"; fi; done was the ticket! -- David C. Rankin, J.D.,P.E.
for i in $(find /var/abs -name PKGBUILD); do if grep "git clone" $i; then echo "found in $i"; fi; done
was the ticket!
grep -l "git clone" /var/abs/*/*/PKGBUILD or if you're uncertain about the directory structure find /var/abs/ -name PKGBUILD -exec grep -l "git clone" {} \; are a bit more straightforward == John K Pate http://homepages.inf.ed.ac.uk/s0930006/ -- The University of Edinburgh is a charitable body, registered in Scotland, with registration number SC005336.
participants (4)
-
Daenyth
-
David C. Rankin
-
Jesse Jaara
-
John K Pate