Skip to content

Commit 99ce481

Browse files
authored
Fix debuild instructions in software-sources.adoc
1 parent d0a3115 commit 99ce481

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

documentation/asciidoc/computers/software-sources.adoc

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ At Raspberry Pi we're trying to open source as much of our code as possible to m
22

33
== Finding software sources in Raspberry Pi OS
44

5-
When looking for software which is distributed with Raspberry Pi OS, there are often upstream software sources that we patch to create our downstream packages (those tagged with `pass:[+rpt]`). To view the source for those packages it is usually easier to fetch through apt. To do this, you first need to edit your apt lists to include the source packages. The following files should be edited to remove the leading `pass:[#]` from each line:
5+
When looking for software which is distributed with Raspberry Pi OS, there are often upstream software sources that we patch to create our downstream packages (those tagged with `pass:[+rpt]`). To view the source for those packages it is usually easier to fetch through apt. To do this, you first need to edit your apt lists to include the source packages. The following files should be edited to remove the leading `pass:[#]` from each `deb-src` line:
66

77
* `+/etc/apt/sources.list+`
88
* `+/etc/apt/sources.list.d/raspi.list+`
@@ -21,11 +21,19 @@ Now you can fetch the package source, for example:
2121
$ apt source labwc
2222
----
2323

24+
Next you need to install a helper package:
25+
26+
[source,console]
27+
----
28+
$ sudo apt install devscripts
29+
----
30+
2431
Finally you can build the package using the standard Debian building process.
2532

2633
[source,console]
2734
----
2835
$ sudo apt build-dep labwc
36+
$ cd labwc-0.8.4
2937
$ debuild -uc -us
3038
----
3139

0 commit comments

Comments
 (0)