Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

closed as off topic by Anna Lear Dec 2 '11 at 2:40

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.

3 Answers

up vote 13 down vote accepted
  1. pacman -S abs
  2. pacman -S base-devel
  3. As root, edit /etc/abs.conf to include your desired repositories: vim /etc/abs.conf or: nano /etc/abs.conf. Remove the ! in front of the appropriate repositories, for example: REPOS=(core extra community !testing)
  4. Download the Arch Build System (ABS) tree. As root, run: abs. Your ABS tree is now created under /var/abs. The above step is done once for all (run abs from time to time to update the source tree though). Next,
  5. say if you want the source code of the Linux command find

    1. find out which package the command find belongs to: pacman -Qo echo which find. The result is "/usr/bin/find is owned by findutils 4.4.2-3".

    2. cp -r /var/abs/core/findutils /home/yourname/a_directory

6.

cd /home/yourname/a_directory
makepkg

Now you have your source code.

share|improve this answer

As already mentioned you can use the ABS (Arch Build System):

Install it using pacman:

sudo pacman -S base-devel abs

then download the ABS tree:

sudo abs

or get a specific package:

sudo abs [package_name]

Then copy the package, whose source you want to have, from the local abs tree (e.g. /var/abs/core/findutils) to another directory, e.g. /home/blabla/abs

Then run makepkg:

  • if you only want to get the sources and don't want to build the package you can run makepkg -od

  • otherwise run makepkg -s, which will then handle all the package's dependencies automatically

  • watch out becaouse makepkg will overwrite your modifications, use makepkg -e to build your local sources instead

If you want to install the package you've built, run

pacman -U name-of-package.xz
share|improve this answer

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 apt-get source. But perhaps you find a tool on AUR that does the job for you, for example yaourt supports building from sources and exporting them.

share|improve this answer
I just forgot to mention that the mentioned ABS also comes with user-space tools, so you can in fact automatically checkout all packages etc. However it is overkill for single packages. – ypnos Dec 23 '10 at 11:45

Not the answer you're looking for? Browse other questions tagged or ask your own question.