You are not logged in.
Pages: 1
How do I know if a package is in ABS?
How do I find the path so that I can copy and build the pkg
Offline
If you have abs installed on your system, then the PKGBUILD files will be in /var/abs/
As an alternative, you can grab the PKGBUILD files from the repositories.
Offline
Yes,
I have ABS installed. How do I look at the files in /var/abs/ just ls?
Thanks
Offline
If I grap the PKGBUILD from the repositories How do I install it? I am getting errors with PKGBUILD not present
Offline
archlinux - please read this and this — twice — then ask questions.
--
http://rsontech.net | http://github.com/rson
Offline
Have a look in the wiki:
http://wiki.archlinux.org/index.php/ABS
http://wiki.archlinux.org/index.php/Makepkg
Offline
Your face is !$ What do you mean? My face will bring me money?
Offline
I got it.
Thanks
Offline
Your face is !$ What do you mean? My face will bring me money?
...That's his signature, it's has less relevance to your question.
Please mark your thread [SOLVED] if it's completed.
Offline
viga, it sounds like you might not know how to use your command-line shell very well. Read a bash tutorial (for interactive use, not shell scripting) if that's the case. You won't reap many of Arch's benefits if you don't know your way around the filesystem. If I misinterpreted your original post, then never mind.
You can run 'pacman -Ss <package>' (without the quotes and angle brackets) to search for packages. The output will tell you what repository each package is in. Or, if you know the exact name of the package you're looking for, you can run 'pacman -Si <package>' which will tell you what repository it's in, among other things. ABS package directories are located inside their repository subdirectory of /var/abs. For example, gimp, which is in [extra], is found at /var/abs/extra/gimp. To copy gimp's directory to your build directory, which let's say is located at ~/abs, type:
cd ~/abs
cp -r /var/abs/extra/gimp .
Then you would edit the PKGBUILD as desired and run makepkg, possibly with the '-c', '-i', and/or '-s' flags. As others have said, make sure you read the wiki to learn all about makepkg, ABS, and the AUR.
Offline
Pages: 1