mirror of
https://pagure.io/fedora-docs/quick-docs.git
synced 2024-11-24 21:35:17 +00:00
Clean up orphaned partials after #108
This commit is contained in:
parent
3af0c75a49
commit
3cc13bcdf8
3 changed files with 0 additions and 48 deletions
|
@ -1,18 +0,0 @@
|
||||||
[[compiling-your-application-from-source]]
|
|
||||||
= Compiling Your Application
|
|
||||||
|
|
||||||
NOTE: It is preferable to use DNF to using source installattion. DNF can track what packages you have installed on your system. It facilitates updates and makes it easier to completely remove your files from your system
|
|
||||||
|
|
||||||
. Navigate to the directory containing your source:
|
|
||||||
+
|
|
||||||
[subs="+quotes"]
|
|
||||||
----
|
|
||||||
cd _<your_source_dir>_
|
|
||||||
----
|
|
||||||
+
|
|
||||||
. Run the following command to compile and install your application:
|
|
||||||
+
|
|
||||||
[subs="+quotes"]
|
|
||||||
----
|
|
||||||
./configure && make && make install
|
|
||||||
----
|
|
|
@ -1,22 +0,0 @@
|
||||||
= Downloading the Source Code
|
|
||||||
|
|
||||||
. Navigate to the directory where you want to save the source:
|
|
||||||
+
|
|
||||||
[subs="+quotes"]
|
|
||||||
----
|
|
||||||
cd _<directory_name>_
|
|
||||||
----
|
|
||||||
+
|
|
||||||
. Download the TAR file containing the source code you want to install from:
|
|
||||||
+
|
|
||||||
[subs="+quotes"]
|
|
||||||
----
|
|
||||||
wget _<source_location_URL>_
|
|
||||||
----
|
|
||||||
+
|
|
||||||
. Extract the tarball file contents to the current working directory:
|
|
||||||
+
|
|
||||||
[subs="+quotes"]
|
|
||||||
----
|
|
||||||
tar -xf _<source_tar_filename>_
|
|
||||||
----
|
|
|
@ -1,8 +0,0 @@
|
||||||
= Setting up a Development and Compiling Environment
|
|
||||||
|
|
||||||
Install packages form the _C Development Tools and Libraries_ group:
|
|
||||||
|
|
||||||
[subs="+quotes"]
|
|
||||||
----
|
|
||||||
# dnf group install @c-development
|
|
||||||
----
|
|
Loading…
Reference in a new issue