I am using Arch Linux. I want to do the same thing like apt-get source coreutils; is it possible to download sources with Pacman? I didn't find a solution in the man pages.
How can I get the source code of a package?
|
I am using Arch Linux. I want to do the same thing like How can I get the source code of a package? |
||||
|
|
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
6.
Now you have your source code. |
||||
|
|
|
As already mentioned you can use the ABS (Arch Build System): Install it using pacman:
then download the ABS tree:
or get a specific package:
Then copy the package, whose source you want to have, from the local abs tree (e.g. Then run
If you want to install the package you've built, run
|
||||
|
|
|
You get the package sources from the Arch Linux SVN repository, called ABS. First find the package online: http://www.archlinux.org/packages/?q=coreutils Then, on the package details page, on the right side use the SVN links, e.g.: http://repos.archlinux.org/wsvn/packages/coreutils/trunk/ And there, you have a sweet "Download" button, in this case it leads to: http://repos.archlinux.org/wsvn/packages/coreutils/trunk/?op=dl&isdir=1 It is a little bit more complicated than |
|||
|